From 4b68411e71dfb7a6c7f83dc7c8d79f0438c8f765 Mon Sep 17 00:00:00 2001 From: Toni500github <88878648+Toni500github@users.noreply.github.com> Date: Fri, 12 Apr 2024 17:49:19 +0200 Subject: [PATCH] Update release.yml please please --- .github/workflows/release.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f09653..6a3e793 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,13 @@ jobs: - name: Build release run: tar --zstd -cf tabaur.tar.zst taur - + + - name: Upload to github artifacts + uses: actions/upload-artifact@v3 + with: + name: tabaur + path: tabaur.tar.zst + release: name: Create GitHub Release needs: [build, get-version] @@ -64,10 +70,15 @@ jobs: runs-on: ubuntu-latest needs: [release, get-version] steps: + - uses: actions/download-artifact@v3 + with: + name: tabaur + - uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.release.outputs.release-url }} + asset_path: ./tabaur.tar.zst asset_name: tabaur.tar.zst asset_content_type: application/tar+zstd