Skip to content

Commit

Permalink
Fix env which was not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
DOBEN committed Aug 10, 2024
1 parent 407eb02 commit 1b1c514
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 1b1c514

Please sign in to comment.