We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8aca0 commit 10a202fCopy full SHA for 10a202f
.github/workflows/push.yml
@@ -71,7 +71,7 @@ jobs:
71
needs: check
72
if: github.event_name == 'push'
73
permissions:
74
- contents: read
+ contents: write
75
steps:
76
- name: Download tarball
77
uses: actions/download-artifact@v3
@@ -94,10 +94,8 @@ jobs:
94
95
- name: Push release
96
if: steps.get_version_fastfetch.outputs.release != steps.get_version_release.outputs.release
97
- uses: softprops/action-gh-release@v1
+ uses: ncipollo/release-action@v1
98
with:
99
- name: ${{ steps.get_version_fastfetch.outputs.release }}
100
- generate_release_notes: true
101
- files: |
102
- ./fastfetch
103
- ./fastfetch.deb
+ tag: ${{ steps.get_version_fastfetch.outputs.release }}
+ commit: ${{ github.sha }}
+ artifacts: ./fastfetch,./fastfetch.deb
0 commit comments