forked from authpass/authpass
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 879 Bytes
/
ios.yaml
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: iOS und MacOS Build/Release
on:
workflow_dispatch:
inputs:
blubb:
description: 'Never Mind'
required: false
default: ''
push:
branches:
- 'stable'
- 'beta'
- 'macos-stable'
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
platform: ['ios', 'macos']
name: "Build ${{ matrix.platform }}"
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: ci-install-deps
env:
BLACKBOX_SECRET: ${{ secrets.BLACKBOX_SECRET_KEY }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
run: "./authpass/_tools/ci-install-deps.sh ios"
- name: 'ci-release ${{ matrix.platform }}'
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
run: "./authpass/_tools/ci-release.sh ${{ matrix.platform }}"