File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 49
49
- uses : actions/checkout@v4
50
50
with :
51
51
ref : ${{ github.ref }}
52
- token : ${{ secrets.GITHUB_TOKEN }}
52
+ token : ${{ secrets.token }}
53
53
fetch-depth : 0
54
54
clean : true
55
55
fetch-tags : true
70
70
- uses : actions/checkout@v4
71
71
with :
72
72
ref : ${{ github.ref }}
73
- token : ${{ secrets.GITHUB_TOKEN }}
73
+ token : ${{ secrets.token }}
74
74
fetch-depth : 0
75
75
clean : true
76
76
fetch-tags : true
@@ -108,7 +108,7 @@ jobs:
108
108
- uses : actions/checkout@v4
109
109
with :
110
110
ref : ${{ github.ref }}
111
- token : ${{ secrets.GITHUB_TOKEN }}
111
+ token : ${{ secrets.token }}
112
112
fetch-depth : 0
113
113
clean : true
114
114
fetch-tags : true
@@ -121,7 +121,7 @@ jobs:
121
121
with :
122
122
registry : ${{ env.REGISTRY }}
123
123
username : ${{ github.repository_owner }}
124
- password : ${{ secrets.GITHUB_TOKEN }}
124
+ password : ${{ secrets.token }}
125
125
126
126
- name : Base - Build and Push
127
127
if : ${{ inputs.build_base || inputs.build_all }}
Original file line number Diff line number Diff line change 46
46
- uses : actions/checkout@v4
47
47
with :
48
48
fetch-depth : 0
49
- token : ${{ secrets.GITHUB_TOKEN }}
49
+ token : ${{ secrets.RELEASE_TOKEN }}
50
50
51
51
- name : Setup Node.js
52
52
uses : actions/setup-node@v4
70
70
- name : Semantic Release
71
71
id : semantic
72
72
env :
73
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
73
+ GITHUB_TOKEN : ${{ secrets.RELEASE_TOKEN }}
74
74
run : |
75
75
set -e
76
76
@@ -110,4 +110,4 @@ jobs:
110
110
skip_release_main_build : ${{ github.event_name == 'workflow_dispatch' && inputs.skip_release_main_build || false }}
111
111
release_as_latest : ${{ github.event_name == 'workflow_dispatch' && inputs.release_as_latest || needs.semantic-release.outputs.new_release_published == 'true' }}
112
112
secrets :
113
- token : ${{ secrets.GITHUB_TOKEN }}
113
+ token : ${{ secrets.RELEASE_TOKEN }}
You can’t perform that action at this time.
0 commit comments