Skip to content

Commit 411271e

Browse files
authored
Merge pull request #603 from tablelandnetwork/bcalza/workflow-patch
Update binaries.yml
2 parents 3aff18d + 07ade5a commit 411271e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
with:
4747
file: ./cmd/api/Dockerfile
4848
push: true
49-
tags: textile/tableland:latest,textile/tableland:${{ github.ref_name }}
49+
tags: textile/tableland:latest,textile/tableland:${{ github.event.release.tag_name }}
5050
platforms: linux/amd64, linux/arm64
5151
js-release:
5252
runs-on: ubuntu-latest
5353
if: ${{ success() }}
5454
needs: [binaries]
5555
steps:
56-
- run: echo "validator_version ${{ github.ref_name }}"
56+
- run: echo 'validator_version ${{ github.event.release.tag_name }}'
5757

5858
- name: PR to publish this release via the npm package
5959
uses: actions/github-script@v6
@@ -68,7 +68,7 @@ jobs:
6868
6969
// if the tag/release has a preceeding "v" we want to remove
7070
// it and match standard symantics in the js ecosystem
71-
let version = '${{ github.ref_name }}';
71+
let version = '${{ github.event.release.tag_name }}';
7272
if (/^v[0-9]/.test(version)) {
7373
version = version.slice(1);
7474
}

0 commit comments

Comments
 (0)