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 a4c4f80 commit 430af45Copy full SHA for 430af45
.github/workflows/scm_configuration_check.yaml
@@ -29,9 +29,16 @@ jobs:
29
run: |
30
chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT_NAME}
31
32
+ - name: Generate a token
33
+ id: generate-token
34
+ uses: actions/create-github-app-token@v2
35
+ with:
36
+ app-id: ${{ vars.CHAINLOOP_GATHERER_APP_ID }}
37
+ private-key: ${{ secrets.GATHERER_APP_PRIVATE_KEY }}
38
+
39
- name: Gather runner context data
40
- chainloop gather-runner-context --runner-token ${{ secrets.PAT_ADMIN }}
41
+ chainloop gather-runner-context --runner-token ${{ steps.generate-token.outputs.token }}
42
43
- name: Add runner context material to attestation
44
0 commit comments