File tree 2 files changed +20
-11
lines changed
2 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 17
17
uses : actions/checkout@v3
18
18
with :
19
19
submodules : ' true'
20
- token : ${{ secrets.GITHUB_TOKEN }}
20
+ token : ${{ secrets.KEY1 }}
21
21
22
22
- name : 设置.NET Core
23
23
uses : actions/setup-dotnet@v4
@@ -109,7 +109,12 @@ jobs:
109
109
build-macos :
110
110
runs-on : macos-latest
111
111
steps :
112
- - uses : actions/checkout@v3
112
+ - name : Checkout code
113
+ uses : actions/checkout@v3
114
+ with :
115
+ submodules : ' true'
116
+ token : ${{ secrets.KEY1 }}
117
+
113
118
- name : 设置.NET Core
114
119
uses : actions/setup-dotnet@v4
115
120
with :
@@ -123,12 +128,12 @@ jobs:
123
128
MAINVERSION=$(cat ./build/main_version)
124
129
echo "MAINVERSION=$MAINVERSION" >> $GITHUB_ENV
125
130
126
- - name : 更新源码
127
- shell : bash
128
- working-directory : ./
129
- run : |
130
- chmod a+x ./build/update.sh
131
- ./build/update.sh
131
+ # - name: 更新源码
132
+ # shell: bash
133
+ # working-directory: ./
134
+ # run: |
135
+ # chmod a+x ./build/update.sh
136
+ # ./build/update.sh
132
137
133
138
- name : 构建
134
139
shell : bash
@@ -152,8 +157,12 @@ jobs:
152
157
build-windows :
153
158
runs-on : windows-latest
154
159
steps :
155
- - uses : actions/checkout@v3
156
-
160
+ - name : Checkout code
161
+ uses : actions/checkout@v3
162
+ with :
163
+ submodules : ' true'
164
+ token : ${{ secrets.KEY1 }}
165
+
157
166
- name : Read version number
158
167
id : version
159
168
run : |
Original file line number Diff line number Diff line change 17
17
uses : actions/checkout@v3
18
18
with :
19
19
submodules : ' true'
20
- token : ${{ secrets.GITHUB_TOKEN }}
20
+ token : ${{ secrets.KEY1 }}
21
21
22
22
- name : 设置.NET Core
23
23
uses : actions/setup-dotnet@v4
You can’t perform that action at this time.
0 commit comments