From 10a202fe8005c564a84f494c0676fa1d41e38e2e Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Sun, 20 Mar 2022 16:44:08 +0100 Subject: [PATCH] First Release? v14 --- .github/workflows/push.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 0aa59c076..e19c15660 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -71,7 +71,7 @@ jobs: needs: check if: github.event_name == 'push' permissions: - contents: read + contents: write steps: - name: Download tarball uses: actions/download-artifact@v3 @@ -94,10 +94,8 @@ jobs: - name: Push release if: steps.get_version_fastfetch.outputs.release != steps.get_version_release.outputs.release - uses: softprops/action-gh-release@v1 + uses: ncipollo/release-action@v1 with: - name: ${{ steps.get_version_fastfetch.outputs.release }} - generate_release_notes: true - files: | - ./fastfetch - ./fastfetch.deb + tag: ${{ steps.get_version_fastfetch.outputs.release }} + commit: ${{ github.sha }} + artifacts: ./fastfetch,./fastfetch.deb