Skip to content

Commit 1cdca4c

Browse files
committed
Add workflow responsible for creating UPM dev branch
1 parent 9dab6e3 commit 1cdca4c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/upm-dev.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update UPM branch (develop)
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
jobs:
7+
split-upm:
8+
name: split upm branch
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: split upm branch
15+
run: |
16+
git subtree split -P "$PKG_ROOT" -b upm
17+
git push -u origin upm
18+
env:
19+
PKG_ROOT: 'Assets/Editor Toolbox'

0 commit comments

Comments
 (0)