Skip to content

Commit

Permalink
Signmessage.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Apr 11, 2024
1 parent 2c7dfa9 commit 7c3da71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release-sign-message-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
if docker manifest inspect ${FULL_IMAGE_TAG} > /dev/null; then
echo "::error ${FULL_IMAGE_TAG} already exists"
exit 1
elif [ ! "${{ github.ref_name }}" = "signmessage/${VERSION}" ]; then
echo "::error Expected tag ${EXPECTED_TAG} does not match the version ${VERSION}."
exit 1
else
# Store the full image tag into a tag variable for the following step.
echo "tag=${FULL_IMAGE_TAG}" > "$GITHUB_OUTPUT"
Expand All @@ -50,4 +53,4 @@ jobs:
file: ./signMessage/Dockerfile
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tag }}
tags: ${{ steps.meta.outputs.tag }}
2 changes: 1 addition & 1 deletion signMessage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sign_message",
"version": "0.2.1",
"version": "0.2.2",
"private": true,
"dependencies": {
"@concordium/browser-wallet-api-helpers": "^0.2.0",
Expand Down

0 comments on commit 7c3da71

Please sign in to comment.