Adding publishing action which allows automated publishing. #149
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: reader-sdk-flutter-plugin | |
| on: [push] | |
| jobs: | |
| install-and-test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| channel: 'stable' # or: 'beta', 'dev' or 'master' | |
| - run: flutter pub get | |
| # Android | |
| - run: | | |
| cd example | |
| flutter pub get | |
| cd android | |
| ./gradlew clean build -PSQUARE_READER_SDK_APPLICATION_ID=${{secrets.SQUARE_READER_SDK_APPLICATION_ID}} -PSQUARE_READER_SDK_REPOSITORY_PASSWORD=${{secrets.SQUARE_READER_SDK_REPOSITORY_PASSWORD}} | |
| # #IOS | |
| - run: | | |
| cd example | |
| flutter pub get | |
| cd ios | |
| ruby <(curl https://connect.squareup.com/readersdk-installer) install --app-id ${{secrets.SQUARE_READER_SDK_APPLICATION_ID}} --repo-password ${{secrets.SQUARE_READER_SDK_REPOSITORY_PASSWORD}} --version 1.6.1 > /dev/null | |
| flutter clean | |
| rm Pods && rm Podfile.lock | |
| flutter pub get | |
| pod update Firebase/CoreOnly | |
| pod install --repo-update | |
| xcodebuild -workspace Runner.xcworkspace -configuration Debug -scheme Runner -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14" |