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 e8f3a33 commit 6683e84Copy full SHA for 6683e84
actions/vsa_creator/action.yml
@@ -38,6 +38,13 @@ runs:
38
echo "## Signed VSA" >> $GITHUB_STEP_SUMMARY
39
cat ${{ github.workspace }}/metadata/signed_vsa.json >> $GITHUB_STEP_SUMMARY
40
shell: bash
41
+ - id: store_in_note
42
+ run: |
43
+ git config user.name "${{ github.actor }}"
44
+ git config user.email "${{ github.actor }}@users.noreply.github.com"
45
+ git fetch origin "refs/notes/*:refs/notes/*"
46
+ git notes append -F ${{ github.workspace }}/metadata/signed_vsa.json
47
+ git push origin "refs/notes/*"
48
- uses: actions/upload-artifact@v4
49
if: always()
50
with:
0 commit comments