Skip to content

Commit 649988d

Browse files
authored
changed to wac from wac-cli for the gh commands (#118)
1 parent 5c86f02 commit 649988d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish-binaries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- name: Login GH CLI
1818
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
1919
- name: Delete old dev release
20-
run: gh release delete -R bytecodealliance/wac-cli dev -y || true
20+
run: gh release delete -R bytecodealliance/wac dev -y || true
2121
- name: Create new latest release
22-
run: gh release create -R bytecodealliance/wac-cli dev --prerelease --notes "Published artifacts from the latest build"
22+
run: gh release create -R bytecodealliance/wac dev --prerelease --notes "Published artifacts from the latest build"
2323

2424
publish_dev_release:
2525
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'bytecodealliance/wac'
@@ -61,7 +61,7 @@ jobs:
6161
- name: Login GH CLI
6262
shell: bash
6363
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
64-
- run: gh release upload -R bytecodealliance/wac-cli --clobber dev target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }}
64+
- run: gh release upload -R bytecodealliance/wac --clobber dev target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }}
6565

6666
publish_tagged_release:
6767
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'bytecodealliance/wac'
@@ -100,4 +100,4 @@ jobs:
100100
- name: Login GH CLI
101101
shell: bash
102102
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
103-
- run: gh release upload -R bytecodealliance/wac-cli --clobber ${{ github.ref_name }} target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }}
103+
- run: gh release upload -R bytecodealliance/wac --clobber ${{ github.ref_name }} target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }}

0 commit comments

Comments
 (0)