Skip to content

Commit

Permalink
Merge pull request #887 from openedx/cag/release
Browse files Browse the repository at this point in the history
chore: remove release input reference
  • Loading branch information
Ian2012 committed Jul 3, 2024
2 parents 0b845cf + f624208 commit 4f5abc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
with:
python-version: "3.12"
- name: Create bumpversion
if: github.event.inputs.version
if: steps.tag_version.outputs.new_version
id: bumpversion
run: |
pip install bump2version
bump2version --new-version ${{ steps.tag_version.outputs.new_version }} setup.cfg tutoraspects/__about__.py .ci/config.yml
- name: Update Changelog
if: github.event.inputs.version
if: steps.tag_version.outputs.new_version
uses: stefanzweifel/[email protected]
with:
latest-version: v${{ steps.tag_version.outputs.new_version }}
release-notes: ${{ steps.tag_version.outputs.changelog }}
- name: Push branch
if: github.event.inputs.version
if: steps.tag_version.outputs.new_version
run: |
branch_name="bot/v${{ steps.tag_version.outputs.new_version }}"
git fetch --prune origin
Expand Down

0 comments on commit 4f5abc9

Please sign in to comment.