Skip to content

Commit

Permalink
Merge pull request #416 from k-taro56/develop
Browse files Browse the repository at this point in the history
[Feature] Update build workflow and fix code signing issue
  • Loading branch information
ensan-hcl authored Feb 17, 2024
2 parents e43dce9 + c13bc35 commit 9808096
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build on push

on:
push:
pull_request:

jobs:
build:
name: Xcode Build
runs-on: macos-14

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Build Project
run: |
xcodebuild build -project azooKey.xcodeproj \
-scheme MainApp \
-sdk iphoneos \
-configuration Release \
CODE_SIGNING_ALLOWED=NO
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# Please refer to the following link for guidance:
# https://zenn.dev/articles/how-to-build-ios-app-in-github-actions

name: Build
name: Upload build to App Store Connect

on:
push:
branches:
- develop

jobs:
build:
name: Build
jobs:
build_and_upload:
name: Build and Upload to App Store Connect
runs-on: macos-14

steps:
Expand All @@ -26,7 +26,7 @@ jobs:
-scheme MainApp \
-sdk iphoneos \
-configuration Release \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Archive Project
run: |
Expand Down

0 comments on commit 9808096

Please sign in to comment.