Skip to content

Commit 13e9fbf

Browse files
authored
Create temp.yml
1 parent 438bc11 commit 13e9fbf

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/temp.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)