We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ca28e commit f33c852Copy full SHA for f33c852
.github/workflows/release.yml
@@ -30,7 +30,7 @@ jobs:
30
ref: ${{ steps.semantic.outputs.new_release_version }}
31
- name: Split UPM Branch
32
id: split_upm
33
- if: steps.post_release.outcome == "success"
+ if: steps.post_release.outcome == 'success'
34
run: |
35
git branch -d upm &> /dev/null || echo upm branch not found
36
git subtree split -P "$PKG_ROOT" -b upm
@@ -46,7 +46,7 @@ jobs:
46
env:
47
PKG_ROOT: Packages/mygamedevtools-scene-loader
48
- name: Create UPM Tag
49
- if: steps.split_upm.outcome == "success"
+ if: steps.split_upm.outcome == 'success'
50
51
git tag $TAG upm
52
git push origin --tags
0 commit comments