From bc7544904638698e808706a23c608b85119a4949 Mon Sep 17 00:00:00 2001 From: Tim Sweeney Date: Wed, 11 Sep 2024 11:54:29 -0700 Subject: [PATCH] Fix GH action --- .github/workflows/bump_version.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump_version.yaml b/.github/workflows/bump_version.yaml index acf8ebd0f156..f6235f2cc323 100644 --- a/.github/workflows/bump_version.yaml +++ b/.github/workflows/bump_version.yaml @@ -34,16 +34,16 @@ jobs: with: token: ${{ secrets.WANDBMACHINE_GITHUB_TOKEN }} fetch-depth: 0 - - id: "Setup Git" + - id: setup_git run: | git config --global user.name 'Weave Build Bot' git config --global user.email weave@wandb.com - - id: "Bump the version" + - id: bump_version run: | bump-my-version bump ${{ github.event.inputs.bump_type }} ./weave/version.py --tag --commit git push git push --tags - - id: "Start the next development cycle" + - id: start_next_development_cycle # This might seem weird to bump patch and then pre_n, but since semver # dictates that pre-release versions have lower precedence, this ensures # that the next commit on main will have a pre-release version.