forked from ihhub/fheroes2
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 841 Bytes
/
push.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
name: Push
on:
push:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
android:
name: Android
uses: ./.github/workflows/android.yml
secrets:
ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }}
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
make:
name: Make
uses: ./.github/workflows/make.yml
msvc:
name: MSVC
uses: ./.github/workflows/msvc.yml
sonarcloud:
name: SonarCloud Analyzer
uses: ./.github/workflows/sonarcloud.yml
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
translation:
name: Translation update
needs:
- android
- make
- msvc
uses: ./.github/workflows/translation_update.yml