Skip to content

Commit

Permalink
Update binaries.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Calza <brunoangelicalza@gmail.com>
  • Loading branch information
brunocalza committed Aug 21, 2023
1 parent 3aff18d commit 98a8510
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
with:
file: ./cmd/api/Dockerfile
push: true
tags: textile/tableland:latest,textile/tableland:${{ github.ref_name }}
tags: textile/tableland:latest,textile/tableland${GITHUB_REF#refs/tags/}:
platforms: linux/amd64, linux/arm64
js-release:
runs-on: ubuntu-latest
if: ${{ success() }}
needs: [binaries]
steps:
- run: echo "validator_version ${{ github.ref_name }}"
- run: echo "validator_version ${GITHUB_REF#refs/tags/}"

- name: PR to publish this release via the npm package
uses: actions/github-script@v6
Expand All @@ -68,7 +68,7 @@ jobs:
// if the tag/release has a preceeding "v" we want to remove
// it and match standard symantics in the js ecosystem
let version = '${{ github.ref_name }}';
let version = '${GITHUB_REF#refs/tags/}';
if (/^v[0-9]/.test(version)) {
version = version.slice(1);
}
Expand Down

0 comments on commit 98a8510

Please sign in to comment.