We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a414b37 commit 33c70c3Copy full SHA for 33c70c3
1 file changed
.github/workflows/srpm.yaml
@@ -35,10 +35,17 @@ jobs:
35
- name: Release
36
run: echo "release=$(ls SRPMS/*.rpm | cut -d'-' -f4 | cut -d'.' -f1)" >> "$GITHUB_OUTPUT"
37
id: release
38
+ - name: Sign
39
+ uses: FKLC/sign-files-action@v1.0.0
40
+ with:
41
+ privateKey: ${{ secrets.PRIVATE_KEY }}
42
+ outputFolder: 'SRPMS'
43
+ files: |
44
+ SRPMS/*.rpm
45
- name: Create Release
46
uses: ncipollo/release-action@v1
47
with:
- artifacts: "SRPMS/*.rpm"
48
+ artifacts: "SRPMS/*.rpm,SRPMS/*.rpm.sig"
49
name: ${{ steps.version.outputs.version }}-${{ steps.release.outputs.release }}
50
tag: ${{ steps.version.outputs.version }}-${{ steps.release.outputs.release }}
51
commit: main
0 commit comments