Skip to content

Commit 8e49fa6

Browse files
committed
Define artifact configuration
Signed-off-by: Michael Herger <[email protected]>
1 parent 9e17256 commit 8e49fa6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/actions/build/action.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ inputs:
2121
description: The SignPath project slug to use for code signing
2222
SIGNPATH_SIGNING_POLICY_SLUG:
2323
description: The SignPath signing policy slug to use for code signing
24+
SIGNPATH_ARTIFACT_CONFIG_SLUG:
25+
description: The SignPath artifact config slug to use for code signing
2426

2527
runs:
2628
using: composite
@@ -175,12 +177,12 @@ runs:
175177
organization-id: '${{ inputs.SIGNPATH_ORG_ID }}'
176178
project-slug: '${{ inputs.SIGNPATH_PROJECT_SLUG }}'
177179
signing-policy-slug: '${{ inputs.SIGNPATH_SIGNING_POLICY_SLUG }}'
180+
artifact-configuration-slug: '${{ inputs.SIGNPATH_ARTIFACT_CONFIG_SLUG }}'
178181
github-artifact-id: '${{ steps.upload-artifact.outputs.artifact-id }}'
179182
wait-for-completion: true
180183
output-artifact-directory: publish
181-
# parameters: |
182-
# version: ${{ toJSON(some.userinput) }}
183-
# myparam: "another param"
184+
185+
- run: ls -al publish/
184186

185187
- name: Upload artifacts to R2
186188
if: false

.github/workflows/00_build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ jobs:
168168
SIGNPATH_ORG_ID: ${{ vars.SIGNPATH_ORG_ID }}
169169
SIGNPATH_PROJECT_SLUG: ${{ vars.SIGNPATH_PROJECT_SLUG }}
170170
SIGNPATH_SIGNING_POLICY_SLUG: ${{ vars.SIGNPATH_SIGNING_POLICY_SLUG }}
171+
SIGNPATH_ARTIFACT_CONFIG_SLUG: ${{ vars.SIGNPATH_ARTIFACT_CONFIG_SLUG }}
171172

172173
updateRepoFile:
173174
name: Trigger repository file update

0 commit comments

Comments
 (0)