Files
publish-immutable-action/.github/workflows/release.yml
T
2024-09-16 17:05:18 +02:00

19 lines
502 B
YAML

# Package and publish the action when a new release is published
# Since this is the publishing action itself, we can use the current checkout as the action
name: 'Publish Immutable Action Version'
on:
release:
types: [published]
permissions:
contents: read
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: ./