Skip to content

Commit 73a7d41

Browse files
authored
fix: issue with wrong version for push to master (#172)
1 parent e544bca commit 73a7d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/get_version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: 🏷 Get and set godot version
2424
id: version
2525
run: |
26-
VERSION="${{ github.event.pull_request.base.ref || github.base_ref || github.event.release.target_commitish }}"
26+
VERSION="${{ github.event.pull_request.base.ref || github.event.release.target_commitish || github.ref_name }}"
2727
if [[ $VERSION == "master" ]]; then
2828
VERSION="$MASTER_VERSION"
2929
echo "We are overwrite master to latest rc version: $VERSION"

0 commit comments

Comments
 (0)