Skip to content

Commit

Permalink
coderabbit suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray committed Sep 10, 2024
1 parent 26ccb7b commit 653ee94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
python -m pip install build wheel
- name: version
run: echo "::set-output name=version::$(python setup.py --version)"
run: echo "version=$(python setup.py --version)" >> $GITHUB_OUTPUT
id: version
- name: Build Distribution Packages
run: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Get version from setup.py
id: get_version
run: |
VERSION=$(python setup.py --version)
VERSION="$(python setup.py --version)"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Create and push new branch
Expand All @@ -92,7 +92,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Variables
BRANCH_NAME="release-${{ env.VERSION }}"
BASE_BRANCH="master"
HEAD_BRANCH="release-${{ env.VERSION }}"
PR_TITLE="Release ${{ env.VERSION }}"
Expand Down

0 comments on commit 653ee94

Please sign in to comment.