mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-02 19:07:34 +00:00
a1087ddec8
Signed-off-by: crueter <swurl@swurl.xyz>
13 lines
280 B
Bash
13 lines
280 B
Bash
GITDATE=$(git show -s --date=short --format='%ad' | tr -d "-")
|
|
GITREV=$(git show -s --format='%h')
|
|
|
|
ZIP_NAME="Eden-Windows-${ARCH}-${GITDATE}-${GITREV}.zip"
|
|
|
|
mkdir -p artifacts
|
|
mkdir -p pack
|
|
|
|
cp -r build/pkg/* pack
|
|
|
|
cp LICENSE* README* pack/
|
|
|
|
7z a -tzip artifacts/$ZIP_NAME pack/* |