Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,24 +66,19 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download x86_64 binary artifact
id: download-x86_64
- name: Download binary artifacts
id: download
uses: actions/download-artifact@v4
with:
name: ipupdate-x86_64

- name: Download aarch64 binary artifact
id: download-aarch64
uses: actions/download-artifact@v4
with:
name: ipupdate-aarch64
- name: Debug artifact download
run: ls -lh ${{ steps.download.outputs.download-path }}

- name: Create release with assets
run: |
gh release \
create ${{ github.ref_name }} \
--notes-from-tag
'${{ steps.download-x86_64.outputs.download-path }}/ipupdate-x86_64#ipupdate-${{ github.ref_name }}-x86_64-linux' \
'${{ steps.download-aarch64.outputs.download-path }}/ipupdate-aarch64#ipupdate-${{ github.ref_name }}-aarch64-linux'
'${{ steps.download.outputs.download-path }}/ipupdate-x86_64#ipupdate-${{ github.ref_name }}-x86_64-linux' \
'${{ steps.download.outputs.download-path }}/ipupdate-aarch64#ipupdate-${{ github.ref_name }}-aarch64-linux'
env:
GITHUB_TOKEN: ${{ secrets.github_token }}