Skip to content

Commit

Permalink
ok debug that again
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Apr 18, 2024
1 parent c7a81b5 commit 0a84e40
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/generate-symbols.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,9 @@ jobs:
pip install itch-dl
minor=$(echo "${{ inputs.version }}" | cut -d. -f1)
patch=$(echo "${{ inputs.version }}" | cut -d. -f2)
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to itchdl --api-key $ITCH_API_KEY
tar xjf "itchdl/kitfoxgames/dwarf-fortress/dwarf_fortress_${minor}_${patch}_linux.tar.bz2" -C DF_itch
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to . --api-key $ITCH_API_KEY
find -type f .
tar xjf "kitfoxgames/dwarf-fortress/dwarf_fortress_${minor}_${patch}_linux.tar.bz2" -C DF_itch
tar xjf dfhack-symbols-linux64-build.tar.bz2 -C DF_itch
xml/symbols_gen_linux.sh ${{ inputs.version }} ITCH DF_itch
Expand Down Expand Up @@ -231,8 +232,9 @@ jobs:
pip install itch-dl
minor=$(echo "${{ inputs.version }}" | cut -d. -f1)
patch=$(echo "${{ inputs.version }}" | cut -d. -f2)
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to itchdl --api-key $ITCH_API_KEY
unzip -d DF_itch "itchdl/kitfoxgames/dwarf-fortress/dwarf_fortress_${minor}_${patch}_windows.zip"
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to . --api-key $ITCH_API_KEY
find -type f .
unzip -d DF_itch "kitfoxgames/dwarf-fortress/dwarf_fortress_${minor}_${patch}_windows.zip"
xml/symbols_gen_windows.sh ${{ inputs.version }} ITCH DF_itch
# Classic
Expand Down

0 comments on commit 0a84e40

Please sign in to comment.