Skip to content

tagging 잘 되는지 dry run #1

tagging 잘 되는지 dry run

tagging 잘 되는지 dry run #1

Workflow file for this run

# @see: https://github.com/anothrNick/github-tag-action
name: Bump version
on:
push:
branches:
- main
- feature/auto-tagging
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@v1 # Don't use @master or @v1 unless you're happy to test the latest version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token
WITH_V: true
DRY_RUN: true