From 54f809436c3ae2a509f94db7bbe53dcc72b29db2 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Wed, 22 May 2024 14:36:54 +0200 Subject: [PATCH] set up autotagging --- .forgejo/workflows/tag.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .forgejo/workflows/tag.yml diff --git a/.forgejo/workflows/tag.yml b/.forgejo/workflows/tag.yml new file mode 100644 index 0000000..311215d --- /dev/null +++ b/.forgejo/workflows/tag.yml @@ -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