Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
evanharmon1 committed Oct 26, 2024
1 parent 72d91e2 commit 237a42e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,12 @@ jobs:
id: calculate_new_patch_version
run: |
NEW_PATCH=$(( ${{ env.PATCH }} + 1 ))
echo "NEW_PATCH=${NEW_PATCH}" >> $GITHUB_ENV # Set NEW_PATCH as an env variable
NEW_VERSION="v${{ env.MAJOR }}.${{ env.MINOR }}.${{ NEW_PATCH }}"
echo "NEW_PATCH=${NEW_PATCH}" >> $GITHUB_ENV
- name: Set New Version
id: set_new_version
run: |
NEW_VERSION="v${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.NEW_PATCH }}"
echo "NEW_VERSION=${NEW_VERSION}" >> $GITHUB_ENV
- name: Display Version Info
Expand Down

0 comments on commit 237a42e

Please sign in to comment.