mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
13 lines
210 B
Bash
Executable file
13 lines
210 B
Bash
Executable file
#!/bin/bash -e
|
|
set -x
|
|
|
|
cd "$(dirname "$0")"
|
|
cd ..
|
|
ROOT=$(pwd)
|
|
|
|
find .
|
|
unzip Binaries/Binaries.zip
|
|
rm Binaries/Binaries.zip
|
|
find .
|
|
|
|
gh release create "nexus_$GITHUB_REF_NAME" -F Changelist.txt ../Binaries/*.zip
|