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 f7c41ef
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 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 Down
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 f7c41ef

Please sign in to comment.