build: test workflow dispatch
All checks were successful
Go Bump / bump (push) Successful in 36s
Go Test / test (push) Successful in 48s

This commit is contained in:
xuu 2023-09-30 19:57:17 -06:00
parent 27607eb867
commit 864a130df4

View File

@ -0,0 +1,28 @@
name: Go Bump
on:
push:
branches: [ "main" ]
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- run: echo stable=${{ inputs.STABLE }} pre=${{ inputs.BETA }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.1
- run: go install github.com/psanetra/git-semver/cli@master
- run: git tag v$(cli next --stable=false --pre-release-counter)
- run: git push --tags
- run: echo "🍏 This job's status is ${{ job.status }}."