We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2dab3 commit 548af28Copy full SHA for 548af28
.github/workflows/release.yaml
@@ -298,6 +298,7 @@ jobs:
298
PACT_BROKER_BASE_URL: ${{ vars.PACT_BROKER_BASE_URL }}
299
PACT_BROKER_TOKEN: ${{ secrets.PACT_BROKER_TOKEN }}
300
PACT_PUBLISH_CONTRACT: true
301
+ PACT_VERSION: ${{ github.sha }}
302
GIT_TAG: ${{ needs.generate-tag.outputs.tag }}
303
run: |
304
set -x
Makefile
@@ -25,6 +25,12 @@ pact-consumer:
25
pact-broker publish ./pacts/consumer \
26
--auto-detect-version-properties \
27
--consumer-app-version ${GIT_TAG} || true; \
28
+
29
+ pact-broker record-release \
30
+ --pacticipant kots \
31
+ --version ${PACT_VERSION} \
32
+ --environment production \
33
+ --verbose
34
fi
35
36
.PHONY: e2e
0 commit comments