set up autotagging
Auto tag / release (push) Failing after 10s
Details
Auto tag / release (push) Failing after 10s
Details
This commit is contained in:
parent
554a342b68
commit
54f809436c
|
@ -0,0 +1,22 @@
|
||||||
|
name: Auto tag
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Bump version and push tag
|
||||||
|
uses: https://github.com/anothrNick/github-tag-action@v1
|
||||||
|
env:
|
||||||
|
WITH_V: false
|
||||||
|
DEFAULT_BUMP: patch
|
Loading…
Reference in New Issue