From 185c72d034ac16fdccddbbfc8ae34fdc89c930c6 Mon Sep 17 00:00:00 2001 From: Chris Helma Date: Thu, 18 Jan 2024 11:48:26 -0600 Subject: [PATCH] Testing tagging Signed-off-by: Chris Helma --- .github/workflows/auto_tag.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/auto_tag.yml diff --git a/.github/workflows/auto_tag.yml b/.github/workflows/auto_tag.yml new file mode 100644 index 0000000..c79d2ea --- /dev/null +++ b/.github/workflows/auto_tag.yml @@ -0,0 +1,22 @@ +name: Bump version +on: + push: + branches: + - test-tagging + +jobs: + build: + runs-on: ubuntu-22.04 + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: '0' + + - name: Bump version and push tag + uses: anothrNick/github-tag-action@1.64.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + DEFAULT_BUMP: minor + WITH_V: true \ No newline at end of file