Skip to content

chore(deps): Bump mkdocs-material from 9.5.17 to 9.5.18 #190

chore(deps): Bump mkdocs-material from 9.5.17 to 9.5.18

chore(deps): Bump mkdocs-material from 9.5.17 to 9.5.18 #190

Workflow file for this run

name: Add git tag
on:
pull_request:
types: [closed]
jobs:
release-candidate:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Add tag
if: startsWith(github.event.pull_request.title, 'release') && github.event.pull_request.merged == true
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
echo $PR_TITLE | grep -e "release.*" || exit 1
git remote set-url origin https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
git tag $(echo $PR_TITLE | sed -E 's/.* (v[0-9\-\.]*)/\1/g')
git tag -l
git push origin --tags