diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff9f3b8..07ac643 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,6 +108,18 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Download Linux artifacts + uses: actions/download-artifact@v4 + with: + name: linux-dist + path: upload + + - name: Download Windows artifacts + uses: actions/download-artifact@v4 + with: + name: windows-dist + path: upload + - name: Format release note from CHANGELOG.md run: | version="$GITHUB_REF_NAME" @@ -149,18 +161,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Download Linux artifacts - uses: actions/download-artifact@v4 - with: - name: linux-dist - path: upload - - - name: Download Windows artifacts - uses: actions/download-artifact@v4 - with: - name: windows-dist - path: upload - - name: Create GitHub Release uses: softprops/action-gh-release@v2 with: |
