Skip to content

Commit

Permalink
Merge pull request #802 from actions/Jcambass-patch-1
Browse files Browse the repository at this point in the history
Add workflow file for publishing releases to immutable action package
  • Loading branch information
Jcambass authored Sep 26, 2024
2 parents 70db055 + 2e99c4d commit bb8f002
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish-immutable-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Publish Immutable Action Version'

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
packages: write

steps:
- name: Checking out
uses: actions/checkout@v4
- name: Publish
id: publish
uses: actions/[email protected]

0 comments on commit bb8f002

Please sign in to comment.