Skip to content

the key just doesn't exist lol problem on 8-4's side #24

the key just doesn't exist lol problem on 8-4's side

the key just doesn't exist lol problem on 8-4's side #24

Workflow file for this run

name: Deploy to Netlify (Undertale Yellow)
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build-undertaleyellow:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Steam and UTMT
uses: ./.github/actions/steam-utmt-setup
- name: Download Undertale Yellow
run: |
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
unzip -p game.zip "Undertale Yellow v1_1/data.win" > data.win
- name: Extract Undertale Yellow's code
run: |
./utmtcli/UndertaleModCli load data.win --scripts 'scripts/ExportCodeFormatted.csx'
mv Export_Code decompiled-undertaleyellow
- name: Build
run: ./build.sh undertaleyellow
- name: Publish
uses: netlify/actions/cli@master
with:
args: deploy --dir=out --prod
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_UTY }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}