Skip to content

Commit

Permalink
test: github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lanyi1998 committed May 8, 2023
1 parent 5c91a3f commit b97ad51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
release_name: ${{ env.tag }}
tag_name: ${{ env.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}

- name: Upload macOS Binary
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/dnslog-macos.zip
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Upload Linux Binary
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/dnslog-linux.zip
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Upload Windows Binary
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/dnslog-windows.zip
Expand Down

0 comments on commit b97ad51

Please sign in to comment.