Skip to content

Commit e1026d9

Browse files
Fix deployment after last PR.
1 parent c889d9a commit e1026d9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/deploy-dr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
2424
- name: Extract Deltarune's code
2525
run: |
26+
./utmtcli/UndertaleModCli load game/data.win --scripts 'scripts/ExportCodeFormatted.csx'
2627
./utmtcli/UndertaleModCli load game/chapter1_windows/data.win --scripts 'scripts/ExportCodeFormatted.csx'
2728
./utmtcli/UndertaleModCli load game/chapter2_windows/data.win --scripts 'scripts/ExportCodeFormatted.csx'
2829
./utmtcli/UndertaleModCli load game/chapter3_windows/data.win --scripts 'scripts/ExportCodeFormatted.csx'
@@ -41,4 +42,4 @@ jobs:
4142
args: deploy --prod --dir=out/deltarune --message="GitHub Actions" --timeout=3600
4243
env:
4344
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DR }}
44-
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
45+
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

.github/workflows/deploy-uty.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
uses: ./.github/actions/steam-utmt-setup
1616
- name: Download Undertale Yellow
1717
run: |
18-
wget $(curl -s https://www.indiedb.com/downloads/start/262099 | grep 'Click to' | sed -re 's|.*<a href="(/downloads/mirror/262099/[^"]+)".*|https://www.indiedb.com\1|') -qO game.zip
19-
unzip -p game.zip "Undertale Yellow v1_1/data.win" > data.win
18+
wget $(curl -s https://www.indiedb.com/downloads/start/293713 -H "User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36" | grep 'Click to' | sed -re 's|.*<a href="(/downloads/mirror/293713/[^"]+)".*|https://www.indiedb.com\1|') -qO game.zip
19+
unzip -p game.zip "Undertale Yellow v1_2_1/data.win" > data.win
2020
- name: Extract Undertale Yellow's code
2121
run: |
2222
./utmtcli/UndertaleModCli load data.win --scripts 'scripts/ExportCodeFormatted.csx'
@@ -29,4 +29,4 @@ jobs:
2929
args: deploy --dir=out/undertaleyellow --prod
3030
env:
3131
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_UTY }}
32-
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
32+
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

0 commit comments

Comments
 (0)