mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-18 23:05:40 -04:00
Use hub for creating releases
This commit is contained in:
parent
5bfc892a74
commit
ac2d1491ff
@ -1,5 +1,5 @@
|
|||||||
# This script creates the nightly release on Github for micro
|
# This script creates the nightly release on Github for micro
|
||||||
# You must have the correct Github access token to run this script
|
# Must be run from inside the micro git repository
|
||||||
|
|
||||||
commitID=$(git rev-parse HEAD)
|
commitID=$(git rev-parse HEAD)
|
||||||
info=$(github-release info -u zyedidia -r micro -t nightly)
|
info=$(github-release info -u zyedidia -r micro -t nightly)
|
||||||
@ -10,152 +10,28 @@ if [[ $info = *$commitID* ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Deleting old release"
|
echo "Deleting old release"
|
||||||
github-release delete \
|
hub release delete nightly
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly
|
|
||||||
|
|
||||||
echo "Moving tag"
|
echo "Moving tag"
|
||||||
git tag --force nightly $commitID
|
hub push origin :refs/tags/nightly
|
||||||
git push --force --tags
|
git tag -f nightly $commitID
|
||||||
|
hub push --tags
|
||||||
|
|
||||||
echo "Creating new release"
|
echo "Creating new release"
|
||||||
github-release release \
|
hub release create nightly \
|
||||||
--user zyedidia \
|
--prerelease \
|
||||||
--repo micro \
|
--message $'Nightly build\n\nAutogenerated nightly build of micro.' \
|
||||||
--tag nightly \
|
--attach "binaries/micro-$1-osx.tar.gz" \
|
||||||
--name "Nightly build" \
|
--attach "binaries/micro-$1-linux64.tar.gz" \
|
||||||
--description "Autogenerated nightly build of micro. If you don't see anything here that probably means it's building right now!" \
|
--attach "binaries/micro-$1-linux64-static.tar.gz" \
|
||||||
--pre-release
|
--attach "binaries/micro-$1-linux32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-linux-arm.tar.gz" \
|
||||||
echo "Cross compiling binaries"
|
--attach "binaries/micro-$1-linux-arm64.tar.gz" \
|
||||||
./cross-compile.sh $1
|
--attach "binaries/micro-$1-freebsd64.tar.gz" \
|
||||||
mv ../binaries .
|
--attach "binaries/micro-$1-freebsd32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-openbsd64.tar.gz" \
|
||||||
echo "Uploading OSX binary"
|
--attach "binaries/micro-$1-openbsd32.tar.gz" \
|
||||||
github-release upload \
|
--attach "binaries/micro-$1-netbsd64.tar.gz" \
|
||||||
--user zyedidia \
|
--attach "binaries/micro-$1-netbsd32.tar.gz" \
|
||||||
--repo micro \
|
--attach "binaries/micro-$1-win64.zip" \
|
||||||
--tag nightly \
|
--attach "binaries/micro-$1-win32.zip"
|
||||||
--name "micro-$1-osx.tar.gz" \
|
|
||||||
--file binaries/micro-$1-osx.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-linux64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 static binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-linux64-static.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64-static.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-linux32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-linux-arm.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-linux-arm64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-freebsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-freebsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-openbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-openbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-netbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-netbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Windows 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-win64.zip" \
|
|
||||||
--file binaries/micro-$1-win64.zip
|
|
||||||
|
|
||||||
echo "Uploading Windows 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag nightly \
|
|
||||||
--name "micro-$1-win32.zip" \
|
|
||||||
--file binaries/micro-$1-win32.zip
|
|
||||||
|
|
||||||
# echo "Uploading vendored tarball"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag nightly \
|
|
||||||
# --name "micro-$1-src.tar.gz" \
|
|
||||||
# --file binaries/micro-$1-src.tar.gz
|
|
||||||
#
|
|
||||||
# echo "Uploading vendored zip"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag nightly \
|
|
||||||
# --name "micro-$1-src.zip" \
|
|
||||||
# --file binaries/micro-$1-src.zip
|
|
||||||
|
@ -8,145 +8,25 @@ tag="v$1"
|
|||||||
|
|
||||||
echo "Creating tag"
|
echo "Creating tag"
|
||||||
git tag $tag $commitID
|
git tag $tag $commitID
|
||||||
git push --tags
|
hub push --tags
|
||||||
|
|
||||||
|
NL=$'\n'
|
||||||
|
|
||||||
echo "Creating new release"
|
echo "Creating new release"
|
||||||
github-release release \
|
hub release create $tag \
|
||||||
--user zyedidia \
|
--prerelease \
|
||||||
--repo micro \
|
--message "$1${NL}${NL}$2" \
|
||||||
--tag $tag \
|
--attach "binaries/micro-$1-osx.tar.gz" \
|
||||||
--name "$1" \
|
--attach "binaries/micro-$1-linux64.tar.gz" \
|
||||||
--description "$2" \
|
--attach "binaries/micro-$1-linux64-static.tar.gz" \
|
||||||
--pre-release
|
--attach "binaries/micro-$1-linux32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-linux-arm.tar.gz" \
|
||||||
echo "Cross compiling binaries"
|
--attach "binaries/micro-$1-linux-arm64.tar.gz" \
|
||||||
./cross-compile.sh $1
|
--attach "binaries/micro-$1-freebsd64.tar.gz" \
|
||||||
mv ../binaries .
|
--attach "binaries/micro-$1-freebsd32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-openbsd64.tar.gz" \
|
||||||
echo "Uploading OSX binary"
|
--attach "binaries/micro-$1-openbsd32.tar.gz" \
|
||||||
github-release upload \
|
--attach "binaries/micro-$1-netbsd64.tar.gz" \
|
||||||
--user zyedidia \
|
--attach "binaries/micro-$1-netbsd32.tar.gz" \
|
||||||
--repo micro \
|
--attach "binaries/micro-$1-win64.zip" \
|
||||||
--tag $tag \
|
--attach "binaries/micro-$1-win32.zip"
|
||||||
--name "micro-$1-osx.tar.gz" \
|
|
||||||
--file binaries/micro-$1-osx.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 static binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux64-static.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64-static.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux-arm.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux-arm64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-freebsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-freebsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-openbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-openbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-netbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-netbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Windows 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-win64.zip" \
|
|
||||||
--file binaries/micro-$1-win64.zip
|
|
||||||
|
|
||||||
echo "Uploading Windows 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-win32.zip" \
|
|
||||||
--file binaries/micro-$1-win32.zip
|
|
||||||
|
|
||||||
# echo "Uploading vendored tarball"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag $tag \
|
|
||||||
# --name "micro-$1-src.tar.gz" \
|
|
||||||
# --file binaries/micro-$1-src.tar.gz
|
|
||||||
#
|
|
||||||
# echo "Uploading vendored zip"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag $tag \
|
|
||||||
# --name "micro-$1-src.zip" \
|
|
||||||
# --file binaries/micro-$1-src.zip
|
|
||||||
|
158
tools/release.sh
158
tools/release.sh
@ -8,144 +8,24 @@ tag="v$1"
|
|||||||
|
|
||||||
echo "Creating tag"
|
echo "Creating tag"
|
||||||
git tag $tag $commitID
|
git tag $tag $commitID
|
||||||
git push --tags
|
hub push --tags
|
||||||
|
|
||||||
|
NL=$'\n'
|
||||||
|
|
||||||
echo "Creating new release"
|
echo "Creating new release"
|
||||||
github-release release \
|
hub release create $tag \
|
||||||
--user zyedidia \
|
--message "$1${NL}${NL}$2" \
|
||||||
--repo micro \
|
--attach "binaries/micro-$1-osx.tar.gz" \
|
||||||
--tag $tag \
|
--attach "binaries/micro-$1-linux64.tar.gz" \
|
||||||
--name "$1" \
|
--attach "binaries/micro-$1-linux64-static.tar.gz" \
|
||||||
--description "$2" \
|
--attach "binaries/micro-$1-linux32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-linux-arm.tar.gz" \
|
||||||
echo "Cross compiling binaries"
|
--attach "binaries/micro-$1-linux-arm64.tar.gz" \
|
||||||
./cross-compile.sh $1
|
--attach "binaries/micro-$1-freebsd64.tar.gz" \
|
||||||
mv ../binaries .
|
--attach "binaries/micro-$1-freebsd32.tar.gz" \
|
||||||
|
--attach "binaries/micro-$1-openbsd64.tar.gz" \
|
||||||
echo "Uploading OSX binary"
|
--attach "binaries/micro-$1-openbsd32.tar.gz" \
|
||||||
github-release upload \
|
--attach "binaries/micro-$1-netbsd64.tar.gz" \
|
||||||
--user zyedidia \
|
--attach "binaries/micro-$1-netbsd32.tar.gz" \
|
||||||
--repo micro \
|
--attach "binaries/micro-$1-win64.zip" \
|
||||||
--tag $tag \
|
--attach "binaries/micro-$1-win32.zip"
|
||||||
--name "micro-$1-osx.tar.gz" \
|
|
||||||
--file binaries/micro-$1-osx.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 64 static binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux64-static.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux64-static.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux-arm.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Linux Arm 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-linux-arm64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-linux-arm64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-freebsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading FreeBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-freebsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-freebsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-openbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading OpenBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-openbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-openbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-netbsd64.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd64.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading NetBSD 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-netbsd32.tar.gz" \
|
|
||||||
--file binaries/micro-$1-netbsd32.tar.gz
|
|
||||||
|
|
||||||
echo "Uploading Windows 64 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-win64.zip" \
|
|
||||||
--file binaries/micro-$1-win64.zip
|
|
||||||
|
|
||||||
echo "Uploading Windows 32 binary"
|
|
||||||
github-release upload \
|
|
||||||
--user zyedidia \
|
|
||||||
--repo micro \
|
|
||||||
--tag $tag \
|
|
||||||
--name "micro-$1-win32.zip" \
|
|
||||||
--file binaries/micro-$1-win32.zip
|
|
||||||
|
|
||||||
# echo "Uploading vendored tarball"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag $tag \
|
|
||||||
# --name "micro-$1-src.tar.gz" \
|
|
||||||
# --file binaries/micro-$1-src.tar.gz
|
|
||||||
#
|
|
||||||
# echo "Uploading vendored zip"
|
|
||||||
# github-release upload \
|
|
||||||
# --user zyedidia \
|
|
||||||
# --repo micro \
|
|
||||||
# --tag $tag \
|
|
||||||
# --name "micro-$1-src.zip" \
|
|
||||||
# --file binaries/micro-$1-src.zip
|
|
||||||
|
Loading…
Reference in New Issue
Block a user