We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8616414 commit 8bcc337Copy full SHA for 8bcc337
1 file changed
.github/workflows/build_app.yml
@@ -1,10 +1,16 @@
1
-name: build_app
+name: Build .app
2
3
-on: [push, workflow_dispatch]
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - develop
8
+ pull_request:
9
+ workflow_dispatch:
10
11
env:
12
SCHEME: AltServer
-
13
+
14
jobs:
15
master_deploy:
16
runs-on: macos-latest
@@ -13,11 +19,11 @@ jobs:
19
- name: Checkout project
20
uses: actions/checkout@v2
21
with:
- submodules: recursive
17
22
+ submodules: recursive
23
18
24
- name: Set environment variables from project settings
25
run: |
- function set-env-from-proj {
26
+ function set-env-from-proj {
27
echo "$1=$(xcodebuild -scheme "AltServer" -showBuildSettings | grep " $1 " | sed "s/[ ]*$1 = //")" >> $GITHUB_ENV
28
}
29
set-env-from-proj FULL_PRODUCT_NAME
0 commit comments