Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
change artifact download order
  • Loading branch information
lucarin91 committed Oct 9, 2025
commit 21351e65673b58d72f68a851aed1ac229fabfdd9
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,17 +232,18 @@ jobs:
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: ${{ env.ARTIFACT_NAME }}*
path: ${{ env.DIST_DIR }}
merge-multiple: true

- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create a tag for the release
env:
TAG: ${{ env.REPO_REF }}-${{ github.run_number }}
Expand Down
Loading