go-tools/.gitea/workflows/bump.yml
xuu 3efd5fa969
All checks were successful
Go Test / test (push) Successful in 55s
Deploy / deploy (push) Successful in 1m59s
feat: add build info endpoint
2023-09-30 19:41:15 -06:00

37 lines
758 B
YAML

name: Go Bump
on:
workflow_dispatch:
inputs:
stable:
description: 'Stable Release'
required: false
type: boolean
prerelease:
description: 'Pre Release'
required: false
type: boolean
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo stable=${{ inputs.stable }} pre=${{ inputs.prerelease }}
- 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: cli next --stable=false
- run: echo "🍏 This job's status is ${{ job.status }}."