Skip to content

Commit

Permalink
add testbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurin-Notemann committed Nov 27, 2024
1 parent b0e797a commit cf1c4ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/mobile-app-testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
build-testflight:
name: Build and push app to Apple Testflight
runs-on: macos-latest
if: contains(github.event.head_commit.message, 'Bump app version')
if: |
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'push' && contains(github.event.head_commit.message, 'Bump app version'))
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -29,11 +31,11 @@ jobs:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: npm ci
# - name: Install dependencies
# run: npm ci

- name: Build app
run: npx eas-cli build -p ios --profile staging --local --non-interactive --output=./build.ipa
# - name: Build app
# run: npx eas-cli build -p ios --profile staging --local --non-interactive --output=./build.ipa

- name: Submit to App Store
run: |
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ node_modules
.idea/*
.env
socket-test/
build*
# build*

.gen-builds/**
.DS_Store
Binary file added mobile-app/build.ipa
Binary file not shown.

0 comments on commit cf1c4ea

Please sign in to comment.