Skip to content

bump: version 0.0.9 β†’ 0.0.10 #12

bump: version 0.0.9 β†’ 0.0.10

bump: version 0.0.9 β†’ 0.0.10 #12

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
release:
if: ${{ startsWith(github.event.head_commit.message, 'bump:') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
TAG=$(git describe --tags --abbrev=0)
gh release create "$TAG" \
--title "$TAG" \
--generate-notes
env:
GITHUB_TOKEN: ${{ secrets.COATL_BOT_GH_TOKEN }}