Files
publish-immutable-action/.github/workflows/release.yml
T
2024-09-16 15:16:26 +02:00

18 lines
481 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: ./