Skip to content

doc: Fix outdated links (#186) #51

doc: Fix outdated links (#186)

doc: Fix outdated links (#186) #51

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
env:
GOPRIVATE: github.com/observiq
jobs:
goreleaser:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Unshallow
run: git fetch --prune --unshallow
- name: Configure GIT SSH
run: git config --global url.git@github.com:.insteadOf https://github.com/
- name: Configure SSH Key
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.BINDPLANE_ENTERPRISE_SSH_PRIVATE_KEY }}
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Import GPG key
id: import_gpg
uses: paultyng/ghaction-import-gpg@v2.1.0
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: v2.1.0
args: release --config release/goreleaser.yml
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}