From dc92ab0dc75d9c9b02b3f1aeaf3a4504e481f8d2 Mon Sep 17 00:00:00 2001 From: Laura Date: Sun, 8 Sep 2024 00:47:36 +0200 Subject: [PATCH] fix --- .github/workflows/release.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 283dc67..413c3d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,12 +66,9 @@ jobs: with: path: ./build - - name: Upload all built binaries to release - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Create GitHub Release + uses: softprops/action-gh-release@v1 with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./build/ - asset_name: ffwebp_${{ github.ref_name }} - asset_content_type: application/octet-stream + files: ./build/* + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file