Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolkova committed Sep 17, 2024
1 parent c34617d commit 204c3b1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/package-prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Create package release branch
- name: Set environment variables
run: |
git push origin HEAD:$release_branch_name
echo "RELEASE_BRANCH_NAME=${{ needs.prereqs.outputs.release_brach_name }}" >> $GITHUB_ENV
echo "VERSION=${{ needs.prereqs.outputs.version }}" >> $GITHUB_ENV
echo "CHANGELOG=${{ needs.prereqs.outputs.changelog }}" >> $GITHUB_ENV
echo "VERSION_FILE=${{ needs.prereqs.outputs.version_file }}" >> $GITHUB_ENV
echo "PACKAGE_NAME=${{ github.event.inputs.package }}" >> $GITHUB_ENV
- name: Create package release branch
run: |
git push origin HEAD:$RELEASE_BRANCH_NAME
- name: Update package version
run: |
# replace the version in the version.py file (1.2.3dev -> 1.2.3)
Expand Down

0 comments on commit 204c3b1

Please sign in to comment.