mirror of
https://github.com/pommee/goaway.git
synced 2026-02-21 06:08:43 -06:00
27 lines
572 B
YAML
27 lines
572 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
if: "!contains(github.event.head_commit.message, 'chore:')" # Skip if "chore:" is in the commit message
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.23.2
|
|
- uses: go-semantic-release/action@v1
|
|
with:
|
|
hooks: goreleaser
|
|
allow-initial-development-versions: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|