Skip to content

Commit

Permalink
fix: issue with wrong version for push to master (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget authored Oct 9, 2023
1 parent e544bca commit 73a7d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/get_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: 🏷 Get and set godot version
id: version
run: |
VERSION="${{ github.event.pull_request.base.ref || github.base_ref || github.event.release.target_commitish }}"
VERSION="${{ github.event.pull_request.base.ref || github.event.release.target_commitish || github.ref_name }}"
if [[ $VERSION == "master" ]]; then
VERSION="$MASTER_VERSION"
echo "We are overwrite master to latest rc version: $VERSION"
Expand Down

0 comments on commit 73a7d41

Please sign in to comment.