We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99ea06f commit 05feffbCopy full SHA for 05feffb
.github/workflows/semantic-release.yml
@@ -71,11 +71,13 @@ jobs:
71
run: |
72
npm run release
73
echo "version=$(npm run env | grep npm_package_version | cut -d '=' -f 2)" >> $GITHUB_OUTPUT
74
+ echo "package_name=$(npm run env | grep npm_package_name | cut -d '=' -f 2)" >> $GITHUB_OUTPUT
75
76
- name: '✍️ Attest'
77
uses: actions/attest-build-provenance@v2
78
id: attest
79
with:
- subject-name: ghcr.io/${{ github.repository }}
80
+ subject-name: ghcr.io/${{ github.repository_owner }}/${{ steps.npm-release.outputs.package_name }} # TODO: replace with line below
81
+ # subject-name: ghcr.io/${{ github.repository }}
82
subject-digest: sha256:${{ steps.npm-release.outputs.docker_image_sha_long }}
83
push-to-registry: true
0 commit comments