Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
QiubyZ committed Oct 12, 2024
1 parent 9fa96be commit 5d275c0
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,21 @@ jobs:

- uses: actions/checkout@v4

- name: Upload Release
uses: actions/upload-release-asset@v1
# - name: Upload Release
# uses: actions/upload-release-asset@v1
# with:
# upload_url: ${{ steps.release-id.outputs.upload_url }}
# asset_path: ${{env.FILE_OUTPUT}}
# asset_name: ${{env.PROJECT_NAME}}-${{github.run_number}}.zip
# asset_content_type: application/zip
#
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
upload_url: ${{ steps.release-id.outputs.upload_url }}
asset_path: ${{env.FILE_OUTPUT}}
asset_name: ${{env.PROJECT_NAME}}-${{github.run_number}}.zip
asset_content_type: application/zip

repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{env.FILE_OUTPUT}}
asset_name: v1
tag: ${{ github.ref }}
overwrite: true
body: "This is my release text"

0 comments on commit 5d275c0

Please sign in to comment.