diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index ca0b8aa..e14b5f3 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -17,9 +17,9 @@ jobs: - name: Login GH CLI run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }}) - name: Delete old dev release - run: gh release delete -R bytecodealliance/wac-cli dev -y || true + run: gh release delete -R bytecodealliance/wac dev -y || true - name: Create new latest release - run: gh release create -R bytecodealliance/wac-cli dev --prerelease --notes "Published artifacts from the latest build" + run: gh release create -R bytecodealliance/wac dev --prerelease --notes "Published artifacts from the latest build" publish_dev_release: if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'bytecodealliance/wac' @@ -61,7 +61,7 @@ jobs: - name: Login GH CLI shell: bash run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }}) - - run: gh release upload -R bytecodealliance/wac-cli --clobber dev target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }} + - run: gh release upload -R bytecodealliance/wac --clobber dev target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }} publish_tagged_release: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'bytecodealliance/wac' @@ -100,4 +100,4 @@ jobs: - name: Login GH CLI shell: bash run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }}) - - run: gh release upload -R bytecodealliance/wac-cli --clobber ${{ github.ref_name }} target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }} + - run: gh release upload -R bytecodealliance/wac --clobber ${{ github.ref_name }} target/${{ matrix.rust-target }}/release/wac-cli-${{ matrix.rust-target }}