mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
37 lines
859 B
Bash
Executable File
37 lines
859 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
GITHUB_TOKEN="${GITHUB_TOKEN:?missing required input \'GITHUB_TOKEN\'}"
|
|
|
|
CURRENT="$(git describe --tags --abbrev=0)"
|
|
PREVIOUS="$(git describe --tags --abbrev=0 --always "${CURRENT}"^)"
|
|
OWNER="mikefarah"
|
|
REPO="yq"
|
|
|
|
release() {
|
|
github-release release \
|
|
--user "$OWNER" \
|
|
--draft \
|
|
--repo "$REPO" \
|
|
--tag "$CURRENT"
|
|
}
|
|
|
|
upload() {
|
|
mkdir -p ./build-done
|
|
while IFS= read -r -d $'\0'; do
|
|
file=$REPLY
|
|
BINARY=$(basename "${file}")
|
|
echo "--> ${BINARY}"
|
|
github-release upload \
|
|
--replace \
|
|
--user "$OWNER" \
|
|
--repo "$REPO" \
|
|
--tag "$CURRENT" \
|
|
--name "${BINARY}" \
|
|
--file "$file"
|
|
mv "$file" "./build-done/${BINARY}"
|
|
done < <(find ./build -mindepth 1 -maxdepth 1 -print0)
|
|
}
|
|
|
|
release
|
|
upload
|