Skip to content

Commit 515ffc6

Browse files
committed
🔧 chore: CI
1 parent 4fe9a8c commit 515ffc6

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

.github/workflows/test-ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: [self-hosted, Linux]
27+
steps:
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

Comments
 (0)