Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Compress Artifacts
working-directory: ${{github.workspace}}
run: tar -cJf Heavy-MacOS-Universal.tar.xz Heavy
run: tar -cJf Heavy-MacOS-Universal.tar.xz Toolchain

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Compress Artifacts
working-directory: ${{github.workspace}}
run: arc archive Heavy-Win64.tar.xz Heavy
run: arc archive Heavy-Win64.tar.xz Toolchain

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Compress Artifacts
working-directory: ${{github.workspace}}
run: tar -cJf Heavy-Linux-x64.tar.xz Heavy
run: tar -cJf Heavy-Linux-x64.tar.xz Toolchain

- name: Upload Artifacts
uses: actions/upload-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ mkdir .\Heavy\usr\bin\Heavy\
move .\hvcc\dist\pyinstaller\win_amd64\Heavy.exe .\Heavy\usr\bin\Heavy\

cp VERSION Heavy\VERSION
move Heavy Toolchain
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,4 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then
fi

cp VERSION ./Heavy/VERSION
mv ./Heavy ./Toolchain
Loading