@@ -18,7 +18,7 @@ permissions:
18
18
packages : write
19
19
pages : write
20
20
pull-requests : write
21
- repository- projects : write
21
+ projects : write
22
22
security-events : write
23
23
statuses : write
24
24
84
84
fi
85
85
86
86
compute-version :
87
- if : ${{ github.repository == 'LiliaFramework/Lilia' }}
87
+ if : github.repository == 'LiliaFramework/Lilia'
88
88
needs : linter
89
89
runs-on : ubuntu-latest
90
90
outputs :
@@ -111,7 +111,7 @@ jobs:
111
111
echo "valid_count=$VALID_COUNT" >> "$GITHUB_OUTPUT"
112
112
113
113
update-shared-version :
114
- if : ${{ github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main' }}
114
+ if : github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main'
115
115
needs : compute-version
116
116
runs-on : ubuntu-latest
117
117
env :
@@ -151,7 +151,7 @@ jobs:
151
151
git push origin HEAD:main
152
152
153
153
release :
154
- if : ${{ github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main' }}
154
+ if : github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main'
155
155
needs :
156
156
- compute-version
157
157
- update-shared-version
@@ -200,7 +200,7 @@ jobs:
200
200
uses : actions/create-release@v1
201
201
with :
202
202
tag_name : release
203
- release_name : Lilia ${{ env.VERSION }}
203
+ release_name : " Lilia ${{ env.VERSION }}"
204
204
draft : false
205
205
prerelease : false
206
206
env :
@@ -248,7 +248,7 @@ jobs:
248
248
EOF
249
249
- run : |
250
250
~/Steam/steamcmd.sh +login "$STEAM_USERNAME" "$STEAM_PASSWORD" +workshop_build_item "$(pwd -P)/workshop.vdf" +quit
251
- - if : ${{ failure() }}
251
+ - if : failure()
252
252
run : |
253
253
echo ~/Steam/logs/stderr.txt
254
254
cat ~/Steam/logs/stderr.txt || true
@@ -263,7 +263,7 @@ jobs:
263
263
exit 1
264
264
265
265
deploy-pages :
266
- if : ${{ github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main' }}
266
+ if : github.repository == 'LiliaFramework/Lilia' && github.ref == 'refs/heads/main'
267
267
needs :
268
268
- compute-version
269
269
- release
@@ -293,4 +293,4 @@ jobs:
293
293
if ! git diff --cached --quiet; then
294
294
git commit -m "Successfully updated workshop Lilia to ${VERSION}"
295
295
git push origin HEAD:main
296
- fi
296
+ fi
0 commit comments