fix: missing chart line gradient #464
Workflow file for this run
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: Development | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request_target: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| cache: gradle | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - run: ./gradlew spotlessCheck | |
| - run: bundle exec rubocop | |
| create-test-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| cache: gradle | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Write keystore & credentials to files | |
| run: | | |
| echo "$KEYSTORE_BASE64" | base64 --decode > $GITHUB_WORKSPACE/keystore.jks | |
| echo "$FIREBASE_SERVICE_ACCOUNT_CREDENTIALS" > $GITHUB_WORKSPACE/firebase-service-account-credentials.json | |
| env: | |
| KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }} | |
| FIREBASE_SERVICE_ACCOUNT_CREDENTIALS: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIALS }} | |
| - run: bundle exec fastlane development | |
| env: | |
| GOOGLE_APPLICATION_CREDENTIALS: ${{ github.workspace }}/firebase-service-account-credentials.json | |
| KEYSTORE_FILE: ${{ github.workspace }}/keystore.jks | |
| KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} | |
| KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| VERSION_CODE: ${{ github.run_number }} | |
| VERSION_NAME: SNAPSHOT-${{ github.sha }} | |
| FIREBASEAPPDISTRO_APP: ${{ secrets.FIREBASE_APP }} | |
| FIREBASEAPPDISTRO_TESTERS: ${{ secrets.FIREBASE_TESTERS }} | |
| FIREBASEAPPDISTRO_RELEASE_NOTES: | | |
| ${{ github.event.commits[0].message }} | |
| ${{ github.sha }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: artifacts |