8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2dfa201 + 78eae79 commit bcfbca5Copy full SHA for bcfbca5
.github/workflows/publish-immutable-actions.yml
@@ -0,0 +1,22 @@
1
+name: 'Publish Immutable Action Version'
2
+
3
+on:
4
+ release:
5
+ types: [created]
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.1
21
+ with:
22
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments