We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe9a8c commit 515ffc6Copy full SHA for 515ffc6
1 file changed
.github/workflows/test-ci.yml
@@ -0,0 +1,34 @@
1
+name: Release CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - fix_nested_export
7
8
+permissions:
9
+ contents: write
10
+ pull-requests: write
11
12
+jobs:
13
+ ci:
14
+ name: CI Init
15
+ runs-on: [self-hosted, Linux]
16
+ outputs:
17
+ action: ${{ steps.init.outputs.action }}
18
+ steps:
19
+ - id: init
20
+ uses: localazy/release/init@v2
21
22
+ prepare:
23
+ name: Prepare Release PR
24
+ needs: ci
25
+ if: needs.ci.outputs.action == 'prepare'
26
27
28
+ - uses: localazy/release/prepare@v2
29
+ with:
30
+ node-version-file: .nvmrc
31
+ app-id: ${{ secrets.AUTH_APP_ID }}
32
+ app-key: ${{ secrets.AUTH_APP_KEY }}
33
+ badges: true
34
+ badges-size: dist/browser/localazy-api-client.umd.min.js
0 commit comments