We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf2e6d9 commit d08697bCopy full SHA for d08697b
.github/workflows/release.yml
@@ -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