File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 8
8
description : ' Whether to commit the changes or not'
9
9
required : false
10
10
default : " false"
11
+ github_token :
12
+ description : ' GitHub token'
13
+ required : true
11
14
runs :
12
15
using : " composite"
13
16
steps :
33
36
git commit -m "Update version" || echo "No changes to commit"
34
37
git push
35
38
env :
36
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
+ GITHUB_TOKEN : ${{ inputs.github_token }}
37
40
Original file line number Diff line number Diff line change 70
70
uses : ./.github/actions/set_version
71
71
with :
72
72
new_release_version : ${{inputs.new_release_version}}
73
+ github_token : ${{ secrets.GITHUB_TOKEN }}
73
74
74
75
- name : Setup Meson
75
76
env :
@@ -144,6 +145,7 @@ jobs:
144
145
uses : ./.github/actions/set_version
145
146
with :
146
147
new_release_version : ${{inputs.new_release_version}}
148
+ github_token : ${{ secrets.GITHUB_TOKEN }}
147
149
148
150
- name : Setup Meson
149
151
env :
Original file line number Diff line number Diff line change 64
64
uses : ./.github/actions/set_version
65
65
with :
66
66
new_release_version : ${{inputs.new_release_version}}
67
+ github_token : ${{ secrets.GITHUB_TOKEN }}
67
68
68
69
- name : Build
69
70
working-directory : ${{env.GITHUB_WORKSPACE}}
Original file line number Diff line number Diff line change 51
51
with :
52
52
new_release_version : ${{ github.event.inputs.new_release_version}}
53
53
commit_changes : true
54
+ github_token : ${{ secrets.GITHUB_TOKEN }}
54
55
55
56
- name : Bundle release assets
56
57
uses : ./.github/actions/bundle_release
You can’t perform that action at this time.
0 commit comments