Skip to content

refactor(deps): update docker/metadata-action action to v6.2.0 (#147) #35

refactor(deps): update docker/metadata-action action to v6.2.0 (#147)

refactor(deps): update docker/metadata-action action to v6.2.0 (#147) #35

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 }}