diff options
| -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 ff37f2e..ff9f3b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,18 +106,6 @@ jobs: needs: [build-linux, build-windows, publish-crates-io] steps: - - 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 - - uses: actions/checkout@v4 - name: Format release note from CHANGELOG.md @@ -161,6 +149,18 @@ 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: |
