Skip to content

Commit

Permalink
Update build-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ax-6 authored Sep 30, 2024
1 parent e3237e8 commit 49e5b9f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,18 @@ jobs:
name: aq-${{ github.event.release.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}
path: build/*

- name: Download artifact
uses: actions/download-artifact@v2
with:
name: aq-${{ github.event.release.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}
path: ./

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/*
asset_path: aq-${{ github.event.release.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}.zip
asset_name: aq-${{ github.event.release.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}
asset_content_type: application/zip

0 comments on commit 49e5b9f

Please sign in to comment.