Skip to content

Bump anothrNick/github-tag-action from 1.69.0 to 1.71.0 #10

Bump anothrNick/github-tag-action from 1.69.0 to 1.71.0

Bump anothrNick/github-tag-action from 1.69.0 to 1.71.0 #10

Workflow file for this run

name: Auto Tag and Release
on:
pull_request:
types: [closed]
branches:
- main
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: 'main'
fetch-depth: '0'
- name: Bump version and push tag
id: bump_version
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
WITH_V: true
RELEASE_BRANCHES: main
- name: Release
id: release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GHA_PERSONAL_ACCESS_TOKEN }}
with:
tag_name: ${{ steps.bump_version.outputs.new_tag }}
generate_release_notes: true