From 122fc7052b18359763ecdc49c1cbf221f35c1334 Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 7 Jul 2025 17:00:40 +0200 Subject: [PATCH] feat: add github actions auto release --- .github/workflows/auto-release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/auto-release.yml diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml new file mode 100644 index 00000000..d78fb3d8 --- /dev/null +++ b/.github/workflows/auto-release.yml @@ -0,0 +1,22 @@ +name: Tag LCDVN + +on: + workflow_dispatch: + +jobs: + tag: + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Bump version & push tag + uses: anothrNick/github-tag-action@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TAG_PREFIX: v + DEFAULT_BUMP: patch