Skip to content

Commit b1d65e4

Browse files
Jcambassbdehamer
andauthored
Add workflow file for publishing releases to immutable action package (#277)
* Add workflow file for publishing releases to immutable action package This workflow file publishes new action releases to the immutable action package of the same name as this repo. This is part of the Immutable Actions project which is not yet fully released to the public. First party actions like this one are part of our initial testing of this feature. * linter fix for workflow permissions Signed-off-by: Brian DeHamer <[email protected]> --------- Signed-off-by: Brian DeHamer <[email protected]> Co-authored-by: Brian DeHamer <[email protected]>
1 parent 3a27694 commit b1d65e4

File tree

1 file changed

+22
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)