Skip to content

Fix/support podman (#18) #8

Fix/support podman (#18)

Fix/support podman (#18) #8

Workflow file for this run

---
name: release
on:
push:
tags:
- '*.*.*'
env:
# Golang version to use across CI steps
GOLANG_VERSION: '1.19'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ github.token }}