Skip to content

Commit

Permalink
Update upload.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro-Salerno authored Nov 8, 2024
1 parent b9e933c commit bea632f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ git rm -rf Makefile
git rm -rf plugins
git rm -rf compile_flags.txt

mkdir linux
cp ./bin/tarman linux/tarman
cp -r ./bin/plugin linux/plugins
cp -r ./bin/plugin-sdk.o linux/plugin-sdk.o
mkdir $1
cp ./bin/tarman $1/tarman
cp -r ./bin/plugin $1/plugins
cp -r ./bin/plugin-sdk.o $1/plugin-sdk.o

mkdir tarman
cp ./bin/tarman ./tarman/tarman
tar -cvzf ./linux/tarman-linux.tar.gz ./tarman
tar -cvzf ./$1/tarman-$1.tar.gz ./tarman
rm -rf ./tarman

git add linux/
git add $1/

git commit -m "new bundle"
git push --set-upstream origin latest-build --force

0 comments on commit bea632f

Please sign in to comment.