Skip to content

Commit

Permalink
fix: bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oderayi committed Jan 25, 2024
1 parent 5933aec commit 46a6844
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,11 @@ jobs:
- name: Determine release version number
id: determine-release-version
env:
RELEASE_VERSION: ${{ inputs.release_version }}
LAST_RELEASE_TAG: ${{ inputs.last_release_tag }}
_RELEASE_VERSION: ${{ inputs.release_version }}
_LAST_RELEASE_TAG: ${{ inputs.last_release_tag }}
run: |
if [[ -z $RELEASE_VERSION ]]; then
release_version=$(.github/workflows/scripts/determine-release-version.sh $LAST_RELEASE_TAG)
# export RELEASE_VERSION=$release_version
if [[ -z $_RELEASE_VERSION ]]; then
release_version=$(.github/workflows/scripts/determine-release-version.sh $_LAST_RELEASE_TAG)
echo "RELEASE_VERSION=$release_version" >> $GITHUB_OUTPUT
else
echo "RELEASE_VERSION=$release_version" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 46a6844

Please sign in to comment.