Skip to content

Commit

Permalink
ci: fix upload release permission error
Browse files Browse the repository at this point in the history
  • Loading branch information
xosnrdev committed Aug 7, 2024
1 parent 3bdd8bf commit d74b02d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build release asset
- name: Build binary
run: |
cargo build --release --verbose
cargo build --release
tar -czf "${ARCHIVE_NAME}" -C target/release "${APP_NAME}"
- name: Upload release asset
uses: actions/upload-release-asset@v1.0.2
- name: Upload binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit d74b02d

Please sign in to comment.