Skip to content

Merge branch 'main' of https://github.com/containerinfra/kube-pg-upgrade #2

Merge branch 'main' of https://github.com/containerinfra/kube-pg-upgrade

Merge branch 'main' of https://github.com/containerinfra/kube-pg-upgrade #2

Workflow file for this run

name: goreleaser
on:
push:
# run only against tags
tags:
- "*"
permissions:
contents: write
# packages: write
# issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: stable
# More assembly might be required: Docker logins, GPG, etc.
# It all depends on your needs.
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: ${{ github.ref_name }}
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}