forked from Net-Skip/Net-Skip
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1.06 KB
/
skipapp.yml
File metadata and controls
33 lines (30 loc) · 1.06 KB
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
name: Net-Skip
on:
push:
branches: '*'
tags: "[0-9]+.[0-9]+.[0-9]+"
schedule:
- cron: '30 7,19 * * *'
workflow_dispatch:
pull_request:
permissions:
contents: write
id-token: write
attestations: write
jobs:
call-workflow:
uses: skiptools/actions/.github/workflows/skip-app.yml@main
with:
run-local-tests: false
secrets:
# TODO: enable once Android build is ready
# These optional secrets enable the Android app to be signed
KEYSTORE_JKS: ${{ secrets.KEYSTORE_JKS }}
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }}
# This secret enables the Android app to be uploaded to the Play Store
#GOOGLE_PLAY_APIKEY: ${{ secrets.GOOGLE_PLAY_APIKEY }}
# These optional secrets enable the iOS app to be signed
APPLE_CERTIFICATES_P12: ${{ secrets.APPLE_CERTIFICATES_P12 }}
APPLE_CERTIFICATES_P12_PASSWORD: ${{ secrets.APPLE_CERTIFICATES_P12_PASSWORD }}
# This secret enables the iOS app to be uploaded to the App Store
APPLE_APPSTORE_APIKEY: ${{ secrets.APPLE_APPSTORE_APIKEY }}