mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 07:08:06 +00:00
22 lines
383 B
Bash
Executable File
22 lines
383 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"
|
|
}
|
|
|
|
|
|
|
|
release
|
|
|