mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
61205c1def
Co-authored-by: Jordan Haine <jhaine@securitycompass.com>
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
SNAP_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
WEBHOOK_PAYLOAD="$(cat "${SNAP_DIR}/.snapcraft_payload")"
|
|
PAYLOAD_SIG="${SECRET_SNAP_SIG}"
|
|
|
|
|
|
snap_release_needed() {
|
|
last_committed_tag="$(git tag -l --sort=refname|head -1)"
|
|
last_snap_release="$(snap info nvim | awk '$1 == "latest/edge:" { print $2 }' | perl -lpe 's/v\d.\d.\d-//g')"
|
|
git fetch -f --tags
|
|
git checkout "${last_committed_tag}" 2> /dev/null
|
|
last_git_release="$(git describe --first-parent 2> /dev/null | perl -lpe 's/v\d.\d.\d-//g')"
|
|
|
|
if [[ -z "$(echo $last_snap_release | perl -ne "print if /${last_git_release}.*/")" ]]; then
|
|
return 0
|
|
fi
|
|
return 1
|
|
}
|
|
|
|
|
|
trigger_snapcraft_webhook() {
|
|
[[ -n "${PAYLOAD_SIG}" ]] || exit
|
|
echo "Triggering new snap release via webhook..."
|
|
curl -X POST \
|
|
-H "Content-Type: application/json" \
|
|
-H "X-Hub-Signature: sha1=${PAYLOAD_SIG}" \
|
|
--data "${WEBHOOK_PAYLOAD}" \
|
|
https://snapcraft.io/nvim/webhook/notify
|
|
}
|
|
|
|
|
|
if $(snap_release_needed); then
|
|
echo "New snap release required"
|
|
trigger_snapcraft_webhook
|
|
fi
|