-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (54 loc) · 1.57 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Release
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Semantic Release
id: semantic
uses: cycjimmy/[email protected]
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
branch: main
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Post Release Checkout
id: post_release
uses: actions/checkout@v3
if: steps.semantic.outputs.new_release_published == 'true'
with:
ref: ${{ steps.semantic.outputs.new_release_version }}
- name: Split UPM Branch
id: split_upm
if: steps.post_release.outcome == 'success'
run: |
git branch -d upm &> /dev/null || echo upm branch not found
git subtree split -P "$PKG_ROOT" -b upm
git checkout upm
if [[ -d "Samples" ]]; then
git mv Samples Samples~
rm -f Samples.meta
git config --global user.name 'github-bot'
git config --global user.email '[email protected]'
git commit -am "fix: Samples => Samples~"
fi
git push -f -u origin upm
env:
PKG_ROOT: Packages/mygamedevtools-scene-loader
- name: Create UPM Tag
if: steps.split_upm.outcome == 'success'
run: |
git tag $TAG upm
git push origin --tags
env:
TAG: upm/${{ steps.semantic.outputs.new_release_version }}