diff options
-rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbe3569..ac3485d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,9 +8,10 @@ jobs: steps: - name: Download file run: | - gh release download "$TAG" -p '*.jar' + gh release download "$TAG" -p '*.jar' --repo "$REPO" env: TAG: ${{ github.event.release.tag_name }} + REPO: ${{ github.repository }} GH_TOKEN: ${{ github.token }} - name: Show files run: | |