Skip to content

Merge branch 'main' of github.com:michaelquigley/df #19

Merge branch 'main' of github.com:michaelquigley/df

Merge branch 'main' of github.com:michaelquigley/df #19

Workflow file for this run

name: Release
on:
push:
tags: ['v*']
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- run: go test ./...
- uses: goreleaser/goreleaser-action@v5
with:
args: release --clean --draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}