From 456a1941e5eb394b999a0b74c66917e582185358 Mon Sep 17 00:00:00 2001 From: PaddiM8 Date: Sun, 25 Aug 2024 14:36:46 +0200 Subject: [PATCH] ci: Don't use actions/create-release --- .github/workflows/release.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1fd8138..60042a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,23 +81,18 @@ jobs: runs-on: ubuntu-latest needs: [linux-binaries, macOS-binaries, windows-binaries] steps: - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} - draft: false - prerelease: false + - uses: actions/checkout@v3 + - run: | + mkdir build - name: Download Artifact uses: actions/download-artifact@v4 + with: + path: build - name: Upload Assets env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release create ${{ github.ref_name }} * + gh release create ${{ github.ref_name }} build/**/**/* docs: runs-on: ubuntu-latest steps: