File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
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 }
You can’t perform that action at this time.
0 commit comments