Skip to content

tmp dockerfile custom #5

tmp dockerfile custom

tmp dockerfile custom #5

Workflow file for this run

name: goreleaser-rc
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+-rc
jobs:
goreleaser-rc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: false
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --draft --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}