Skip to content

Commit 6e472ce

Browse files
authored
Merge pull request #1179 from actions/Jcambass-patch-1
Add workflow file for publishing releases to immutable action package
2 parents d10ba64 + 6a2e61d commit 6e472ce

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Publish Immutable Action Version'
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
id-token: write
13+
packages: write
14+
15+
steps:
16+
- name: Checking out
17+
uses: actions/checkout@v4
18+
- name: Publish
19+
id: publish
20+
uses: actions/publish-immutable-action@0.0.3

0 commit comments

Comments
 (0)