From ed149868fa88076a651bf33dbc7744830f5711a6 Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Mon, 29 May 2023 15:29:04 +0100 Subject: [PATCH] Updated github workflows --- .github/workflows/version.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/version.yml diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml new file mode 100644 index 0000000..91f3bc6 --- /dev/null +++ b/.github/workflows/version.yml @@ -0,0 +1,17 @@ +name: Bump version +on: + workflow_dispatch: + push: + branches: + - main + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v6.1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}