Skip to content

Commit d08697b

Browse files
committed
build: adding release workflow
1 parent cf2e6d9 commit d08697b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "CI / Release"
2+
3+
on:
4+
push:
5+
tags:
6+
- v**
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
use-native-library-js-staging:
15+
permissions:
16+
contents: write
17+
actions: write
18+
checks: write
19+
pull-requests: write
20+
uses: MatrixAI/.github/.github/workflows/native-library-js-tag.yml@master
21+
secrets:
22+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
23+
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
24+
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
25+
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
26+
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
27+

0 commit comments

Comments
 (0)