Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Apr 12, 2024
1 parent 1646d86 commit 7880bd7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-wallet-test-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
- name: Extract version tag from package.json
id: meta
run: |
export VERSION=$(jq -r .version wallet-connect-test-bench/frontend/package.json)
export VERSION=$(jq -r .version wallet-connect-test-bench/front-end/package.json)
export FULL_IMAGE_TAG="${{ env.REGISTRY }}/concordium/$IMAGE_NAME:$VERSION"
echo "::notice FULL_IMAGE_TAG=${FULL_IMAGE_TAG}"
# Make sure the image does not exist. Abort if we can retrieve any metadata.
if docker manifest inspect ${FULL_IMAGE_TAG} > /dev/null; then
echo "::error ${FULL_IMAGE_TAG} already exists"
exit 1
elif [ ! "${{ github.ref_name }}" = wallet-connect-test-bench/${VERSION}" ]; then
elif [ ! "${{ github.ref_name }}" = "wallet-connect-test-bench/${VERSION}" ]; then
echo "::error Expected tag ${EXPECTED_TAG} does not match the version ${VERSION}."
exit 1
else
Expand All @@ -45,7 +45,7 @@ jobs:
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
file: ./wallet-connect-test-bench/frontend/Dockerfile
file: ./wallet-connect-test-bench/front-end/Dockerfile
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tag }}
4 changes: 4 additions & 0 deletions wallet-connect-test-bench/front-end/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased changes

## 1.5.2

- Update dependencies.

## 1.5.1

- Fix parameter schema of function `set_address`.
Expand Down
2 changes: 1 addition & 1 deletion wallet-connect-test-bench/front-end/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "test-bench-for-wallets",
"packageManager": "[email protected]",
"version": "1.5.1",
"version": "1.5.2",
"license": "Apache-2.0",
"type": "module",
"engines": {
Expand Down

0 comments on commit 7880bd7

Please sign in to comment.