mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
22 lines
383 B
Bash
22 lines
383 B
Bash
|
#!/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"
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
release
|
||
|
|