goreleaser #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# build binaries and add to release - see | |
# https://github.com/goreleaser/goreleaser-action | |
name: goreleaser | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.20" | |
- name: Extract version | |
id: extract_version | |
#env: | |
# # Fake Git authorship information to try to make git tag happy. | |
# GIT_AUTHOR_NAME: "go-jsonnet-releaser" | |
# GIT_AUTHOR_EMAIL: "[email protected]" | |
run: | | |
CMD_VERSION="$(go run ./cmd/jsonnet --version | grep -oe 'v[0-9][0-9a-z.-]*$')" && | |
printf "Extracted jsonnet version: %s\n" "${CMD_VERSION}" && | |
git tag "${CMD_VERSION}" && | |
printf "jsonnet_version='%s'\n" "${CMD_VERSION}" >> "${GITHUB_OUTPUT}" | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1 | |
env: | |
PROPOSED_VERSION: "${{ steps.extract_version.outputs.jsonnet_version }}" | |
GITHUB_TOKEN: "${{ github.token }}" | |
with: | |
version: latest | |
args: release --clean |