Skip to content

Commit

Permalink
Separate udp copy method
Browse files Browse the repository at this point in the history
  • Loading branch information
SurFlurer authored Mar 14, 2023
1 parent d347202 commit 3e7a6b3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/cnk-multi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,20 @@ jobs:
curl -o '${{ github.workspace }}/Kenan-Modpack-Mod.zip' -L https://github.com/linonetwo/CDDA-Kenan-Modpack-Chinese/releases/download/2023-03-11-1737/Kenan-Modpack-Mod.zip
unzip -q '${{ github.workspace }}/Kenan-Modpack-Mod.zip'
mv '${{ github.workspace }}/Kenan-Modpack-Chinese/' '${{ github.workspace }}/data/mods/'
- name: udp
- name: udp (Linux)
if: runner.os != 'Windows'
run: |
curl -o '${{ github.workspace }}/UndeadPeopleTileset-master.zip' -L https://github.com/Theawesomeboophis/UndeadPeopleTileset/archive/refs/heads/master.zip
unzip -q '${{ github.workspace }}/UndeadPeopleTileset-master.zip'
cp -r '${{ github.workspace }}/UndeadPeopleTileset-master/TILESETS/data' '${{ github.workspace }}'
cp -r '${{ github.workspace }}/UndeadPeopleTileset-master/TILESETS/gfx' '${{ github.workspace }}'
- name: udp (Windows)
if: runner.os == 'Windows'
run: |
curl -o '${{ github.workspace }}/UndeadPeopleTileset-master.zip' -L https://github.com/Theawesomeboophis/UndeadPeopleTileset/archive/refs/heads/master.zip
unzip -q '${{ github.workspace }}/UndeadPeopleTileset-master.zip'
mv '${{ github.workspace }}/UndeadPeopleTileset-master/TILESETS/data' '${{ github.workspace }}'
mv '${{ github.workspace }}/UndeadPeopleTileset-master/TILESETS/gfx' '${{ github.workspace }}'
- name: MyRespectedModdersWork
run: |
git clone --depth=1 https://github.com/SurFlurer/MyRespectedModdersWork '${{ github.workspace }}/MyRespectedModdersWork'
Expand Down

0 comments on commit 3e7a6b3

Please sign in to comment.