Skip to content

Commit

Permalink
chore: fix for move and copy cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
7mochi committed Sep 13, 2024
1 parent e1072d4 commit 86cbe40
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
- name: Move LLHL resources to LLHL folder
run: |
mv llhl-resources/maps-ag-official/* llhl/dist-full/ag
mv llhl-resources/maps-ehll-unofficial/* llhl/dist-full/ag
mv llhl-resources/maps-valve-official/* llhl/dist-full/ag
mv -f llhl-resources/maps-ag-official/* llhl/dist-full/ag
mv -f llhl-resources/maps-ehll-unofficial/* llhl/dist-full/ag
mv -f llhl-resources/maps-valve-official/* llhl/dist-full/ag
- name: Prepare releases in zip
run: |
Expand Down Expand Up @@ -129,19 +129,19 @@ jobs:
- name: Create folder and move LLHL AGMOD .dll
run: |
mkdir -p llhl/dist/ag/dlls
move llhl-agmod/dlls/msvc/Release/ag.dll llhl/dist/ag/dlls/ag.dll
move llhl-agmod/network/delta.lst llhl/dist/ag/delta.lst
Move-Item llhl-agmod/dlls/msvc/Release/ag.dll llhl/dist/ag/dlls/ag.dll
Move-Item llhl-agmod/network/delta.lst llhl/dist/ag/delta.lst
- name: Create folder for full release
run: |
mkdir -p llhl/dist-full
copy llhl/dist llhl/dist-full
Copy-Item llhl/dist llhl/dist-full
- name: Move LLHL resources to LLHL folder
run: |
move llhl-resources/maps-ag-official/* llhl/dist-full/ag
move llhl-resources/maps-ehll-unofficial/* llhl/dist-full/ag
move llhl-resources/maps-valve-official/* llhl/dist-full/ag
Move-Item -Force llhl-resources/maps-ag-official/* llhl/dist-full/ag
Move-Item -Force llhl-resources/maps-ehll-unofficial/* llhl/dist-full/ag
Move-Item -Force llhl-resources/maps-valve-official/* llhl/dist-full/ag
- name: Prepare releases in zip
run: |
Expand Down

0 comments on commit 86cbe40

Please sign in to comment.