Skip to content

Commit 121eacc

Browse files
authored
feat: new release process (#443)
<!-- Thank you for proposing a pull request! Please note that SOME TESTS WILL LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from forks. Someone from the team will review your Pull Request and respond. Please describe your change and any implementation details below. -->
1 parent 16f2a5e commit 121eacc

File tree

2 files changed

+26
-21
lines changed

2 files changed

+26
-21
lines changed

.github/workflows/publish.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: 'Publish immutable action version'
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types:
7+
- 'published'
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: 'Checkout'
19+
uses: 'actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871' # ratchet:actions/checkout@v4
20+
21+
- name: 'Publish'
22+
id: 'publish'
23+
uses: 'actions/publish-immutable-action@4b1aa5c1cde5fedc80d52746c9546cb5560e5f53' # ratchet:actions/[email protected]
24+
with:
25+
github-token: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/release.yml

+1-21
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,4 @@ jobs:
1111
if: |-
1212
startsWith(github.event.head_commit.message, 'Release: v')
1313
name: 'Release'
14-
uses: 'google-github-actions/.github/.github/workflows/release.yml@v0' # ratchet:exclude
15-
16-
publish:
17-
if: |-
18-
startsWith(github.event.head_commit.message, 'Release: v')
19-
runs-on: 'ubuntu-latest'
20-
needs: 'release'
21-
permissions:
22-
contents: 'read'
23-
id-token: 'write'
24-
packages: 'write'
25-
26-
steps:
27-
- name: 'Checkout'
28-
uses: 'actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871' # ratchet:actions/checkout@v4
29-
30-
- name: 'Publish'
31-
id: 'publish'
32-
uses: 'actions/publish-immutable-action@4b1aa5c1cde5fedc80d52746c9546cb5560e5f53' # ratchet:actions/[email protected]
33-
with:
34-
github-token: '${{ secrets.GITHUB_TOKEN }}'
14+
uses: 'google-github-actions/.github/.github/workflows/release.yml@v1' # ratchet:exclude

0 commit comments

Comments
 (0)