Skip to content

Commit

Permalink
Merge pull request #147 from Concordium/fix-env-which-was-not-defined…
Browse files Browse the repository at this point in the history
…-in-CI

Fix env which was not defined
  • Loading branch information
DOBEN authored Aug 13, 2024
2 parents 407eb02 + 1b1c514 commit 898e6ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-issuer-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
echo "::error ${FULL_IMAGE_TAG} already exists"
exit 1
elif [ ! "${{ github.ref_name }}" = "web3id-issuer-onboarding/${VERSION}" ]; then
echo "::error Expected tag ${EXPECTED_TAG} does not match the version ${VERSION}."
echo "::error Expected tag ${{ github.ref_name }} does not match the version ${VERSION}."
exit 1
else
# Store the full image tag into a tag variable for the following step.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-web3id-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "::error ${FULL_IMAGE_TAG} already exists"
exit 1
elif [ ! "${{ github.ref_name }}" = "web3id-verifier/${VERSION}" ]; then
echo "::error Expected tag ${EXPECTED_TAG} does not match the version ${VERSION}."
echo "::error Expected tag ${{ github.ref_name }} does not match the version ${VERSION}."
exit 1
else
# Store the full image tag into a tag variable for the following step.
Expand Down

0 comments on commit 898e6ed

Please sign in to comment.