From 3435efd3692f6038cc69bb4d7c22c5304780ee20 Mon Sep 17 00:00:00 2001 From: Bart Venter <72999113+bartventer@users.noreply.github.com> Date: Sun, 24 Mar 2024 21:50:34 +0200 Subject: [PATCH] ci(workflows): remove Bump Version workflow Added to Test Worflow. --- .github/workflows/bump-version.yaml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/bump-version.yaml diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml deleted file mode 100644 index 63f4681..0000000 --- a/.github/workflows/bump-version.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: 'Bump Version' -on: - push: - tags: ['v[0-9]+.[0-9]+.[0-9]+'] - workflow_dispatch: - -jobs: - bump-version: - name: 'Bump Version' - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - issues: write - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: 'Install Dependencies' - run: yarn global add semver - - name: 'Run Version Bump' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_ACTIONS_USERNAME: ${{ vars.GH_ACTIONS_USERNAME }} - run: make bump-version \ No newline at end of file