84bfe2de2e
This isn't needed now that we're storing attestations in GHCR.
20 lines
547 B
YAML
20 lines
547 B
YAML
# Package and publish the action when a new release is created
|
|
# Since this is the publishing action itself, we can use the current checkout as the action
|
|
name: 'Publish Immutable Action Version'
|
|
on:
|
|
release:
|
|
types: [created]
|
|
permissions:
|
|
id-token: write
|
|
packages: write
|
|
jobs:
|
|
package-and-publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
- name: Publish Immutable Action Version
|
|
uses: ./
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|