From 327a32f7ed10076b0b1b35bed3a7be900dec3115 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 10 Jun 2024 21:35:33 -0400 Subject: [PATCH] ci(github): fix repository name in upload release artifact Release-As: 1.0.4 --- .github/workflows/release-please.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 64d4e5b..968690d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -22,7 +22,7 @@ jobs: with: release-type: node - publish: + deploy: needs: release runs-on: ubuntu-latest if: ${{ needs.release.outputs.release_created }} @@ -55,6 +55,6 @@ jobs: BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} - name: Upload Release Artifact - run: gh release upload ${{ needs.release.outputs.tag_name }} dist/${{ github.repository }}-${{ env.VERSION }}.zip + run: gh release upload ${{ needs.release.outputs.tag_name }} dist/${{ github.event.repository.name }}-${{ env.VERSION }}.zip env: GITHUB_TOKEN: ${{ github.token }}