Fix tagging 2 (#109)

Fixing the tagging so that merges into main automatically create a new tag of the correct version
This commit is contained in:
Harrison (Harry) Cramer
2023-11-18 16:47:48 -05:00
committed by GitHub
parent 3b52f7177a
commit c362aa0cd6

View File

@@ -1,22 +1,19 @@
name: Tag + Bump version name: Tag + Bump version
on: on:
pull_request: push:
branches: branches:
- main - main
jobs: jobs:
build: build:
if: github.event.pull_request.merged == true
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
permissions: permissions:
contents: write contents: write
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0' fetch-depth: '0'
- name: Bump version and push tag - name: Bump version and push tag
uses: anothrNick/github-tag-action@1.64.0 uses: anothrNick/github-tag-action@1.64.0 # Don't use @master or @v1 unless you're happy to test the latest version
env: env:
DEFAULT_BUMP: patch DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}