feat: replace placeholders with real cocktail photos and add onboardi… #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build-android: | |
| name: Build Android | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: android | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - run: ./gradlew :app:assembleDebug | |
| build-ios: | |
| name: Build iOS | |
| runs-on: macos-15 | |
| defaults: | |
| run: | |
| working-directory: ios | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.2" | |
| bundler-cache: false | |
| - run: gem install cocoapods | |
| - name: Cache CocoaPods | |
| uses: actions/cache@v4 | |
| with: | |
| path: ios/Pods | |
| key: pods-${{ hashFiles('ios/Podfile.lock') }} | |
| restore-keys: pods- | |
| - run: pod install | |
| - name: Install XcodeGen | |
| run: brew install xcodegen | |
| - run: xcodegen generate | |
| - run: | | |
| xcodebuild build \ | |
| -workspace Shaker.xcworkspace \ | |
| -scheme Shaker \ | |
| -destination 'generic/platform=iOS Simulator' \ | |
| -quiet |