mirror of
https://github.com/goreleaser/nfpm
synced 2025-04-05 22:09:13 +02:00
5 lines
191 B
Bash
Executable File
5 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
curl -sSf -H "Authorization: Bearer $GITHUB_TOKEN" "https://api.github.com/repos/goreleaser/nfpm/releases/latest" |
|
|
jq -r '.tag_name' >./www/docs/static/latest
|