Skip to content

bump: version 7.0.13 → 7.0.14 #34

bump: version 7.0.13 → 7.0.14

bump: version 7.0.13 → 7.0.14 #34

Workflow file for this run

name: release
on:
push:
branches:
- coatl
permissions:
contents: write
jobs:
release:
if: ${{ startsWith(github.event.head_commit.message, 'bump:') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
token: ${{ secrets.COATL_BOT_GH_TOKEN }}
persist-credentials: true
- id: tag
run: |
echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- run: |
gh release create "$TAG" \
--generate-notes
env:
TAG: ${{ steps.tag.outputs.tag }}
GITHUB_TOKEN: ${{ secrets.COATL_BOT_GH_TOKEN }}