forked from SigmaNight/basiliskLLM
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 783 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Continuous Integration"
on:
push:
branches:
- master
- CI*
tags:
- v*
pull_request:
branches:
- master
permissions:
contents: write
pull-requests: read
jobs:
build_app:
uses: ./.github/workflows/build_app.yml
localization:
uses: ./.github/workflows/localization.yml
with:
branch_name: ${{ github.ref_name }}
secrets:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
release:
permissions:
contents: write
pull-requests: read
if: github.event_name == 'push' && github.ref_type == 'tag'
needs: [build_app, localization]
uses: ./.github/workflows/create_release.yml
with:
ref_name: ${{ github.ref_name }}