1 parent 1fe2554 commit 83023f7Copy full SHA for 83023f7
1 file changed
.github/workflows/ci.yml
@@ -13,11 +13,11 @@ on:
13
- master
14
15
jobs:
16
- Build:
+ macos:
17
runs-on: macos-latest
18
strategy:
19
matrix:
20
- target: ['GoD Tool ???']
+ target: ['GoD Tool']
21
steps:
22
- name: Checkout
23
uses: actions/checkout@master
@@ -26,10 +26,8 @@ jobs:
26
xcodebuild clean
27
- name: Build
28
run: |
29
- xcodebuild build -project "GoD Tool.xcodeproj" -target "${target}" -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
30
- mkdir -p output
31
- mv "build/Release/${target}.app" output/
32
- tar -cvf "${target}.tar" output/
+ make build copy
+ tar -cvf "${target}.tar" out/
33
env:
34
target: ${{ matrix.target }}
35
- name: Archive artifacts
0 commit comments