We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14469e4 commit 32a9b03Copy full SHA for 32a9b03
1 file changed
.github/workflows/update-upm-branch.yml
@@ -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
24
+ git-tag: ${{ steps.tag.outputs.name }}
25
+ pkg-root-dir-path: Assets/uWindowCapture
26
+ main-branch: master
0 commit comments