Skip to content

Commit

Permalink
fix(package): Addressed missing update subcommand of bumpver.
Browse files Browse the repository at this point in the history
  • Loading branch information
acederberg committed Aug 21, 2024
1 parent 04e93e7 commit 3251c77
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,14 @@ jobs:
echo "- kind: ${{ github.event.inputs.kind }}" >> $GITHUB_STEP_SUMMARY
echo "- kind_tag: ${{ github.event.inputs.kind_tag }}" >> $GITHUB_STEP_SUMMARY
python -m bumpver "--${{ github.event.inputs.kind }}" \
git config user.name "github-actions"
git config user.email "<>"
python -m bumpver update "--${{ github.event.inputs.kind }}" \
--tag "${{ github.event.inputs.kind_tag }}" \
--tag-message "${{ github.event.inputs.tag_message }}"
--tag-message "${{ github.event.inputs.tag_message }}" \
--commit
echo "CAPTURA_VERSION=$( python -m bumpver --version )" >> $GITHUB_ENV
- name: Build and Verify.
Expand Down

0 comments on commit 3251c77

Please sign in to comment.