From 9ae198ef3d7fe46de8497c3aee09eafd2fd6388e Mon Sep 17 00:00:00 2001 From: Ovidiu Bokar Date: Sun, 3 Nov 2024 12:15:54 +0000 Subject: [PATCH] Create bump_version.yml --- .github/workflows/bump_version.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/bump_version.yml diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml new file mode 100644 index 0000000..e615691 --- /dev/null +++ b/.github/workflows/bump_version.yml @@ -0,0 +1,18 @@ +name: Bump version +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: '0' + + - name: Bump version and push tag + uses: anothrNick/github-tag-action@1.61.0 # Don't use @master unless you're happy to test the latest version + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: true