Skip to content

Commit 32a9b03

Browse files
authored
Create update-upm-branch.yml
1 parent 14469e4 commit 32a9b03

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Update-UPM-Branch
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
update:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Tag name
18+
id: tag
19+
run: echo ::set-output name=name::${GITHUB_REF#refs/tags/v}
20+
21+
- name: Create UPM Branches
22+
uses: hecomi/create-upm-branch-action@main
23+
with:
24+
git-tag: ${{ steps.tag.outputs.name }}
25+
pkg-root-dir-path: Assets/uWindowCapture
26+
main-branch: master

0 commit comments

Comments
 (0)