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 438bc11 commit 13e9fbfCopy full SHA for 13e9fbf
.github/workflows/temp.yml
@@ -0,0 +1,24 @@
1
+name: build-and-sign
2
+run-name: Building and signing the software
3
+on:
4
+ push:
5
+
6
+jobs:
7
+ build_and_sign:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
11
+ # ... building the software
12
13
+ - name: sign
14
+ uses: signpath/github-action-submit-signing-request@v1
15
+ with:
16
+ api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
17
+ organization-id: '${{ vars.SIGNPATH_ORGANIZATION_ID }}'
18
+ project-slug: 'MyApplication'
19
+ signing-policy-slug: '${{ env.SIGNPATH_SIGNING_POLICY_SLUG }}'
20
+ github-artifact-id: "${{steps.upload-unsigned-artifact.outputs.artifact-id}}"
21
+ wait-for-completion: true
22
+ output-artifact-directory: './myapplication-signed'
23
24
+ # .. deploy steps
0 commit comments