Skip to content

Merge pull request #44 from Luzefiru/refactor/implement-global-state #2

Merge pull request #44 from Luzefiru/refactor/implement-global-state

Merge pull request #44 from Luzefiru/refactor/implement-global-state #2

Workflow file for this run

name: Tagging Pipeline
on:
# on every push to main branch
push:
branches:
- main
jobs:
tag_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bump version and push tag
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(join(github.event.commits.*.message, ' '), '#skip') != true}}
uses: anothrNick/github-tag-action@a2c70ae13a881faf2b4953baaa9e49731997ab36
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
WITH_V: true