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 674d9e0 commit a2ca28eCopy full SHA for a2ca28e
.github/workflows/release.yml
@@ -23,11 +23,14 @@ jobs:
23
env:
24
GH_TOKEN: ${{ secrets.GH_TOKEN }}
25
- name: Post Release Checkout
26
+ id: post_release
27
uses: actions/checkout@v3
28
if: steps.semantic.outputs.new_release_published == 'true'
29
with:
30
ref: ${{ steps.semantic.outputs.new_release_version }}
31
- name: Split UPM Branch
32
+ id: split_upm
33
+ 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
@@ -43,6 +46,7 @@ jobs:
43
46
44
47
PKG_ROOT: Packages/mygamedevtools-scene-loader
45
48
- name: Create UPM Tag
49
+ if: steps.split_upm.outcome == "success"
50
51
git tag $TAG upm
52
git push origin --tags
0 commit comments