Update version to 1.0.1-488 #831
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: Build and Deploy Android | |
| # This workflow is run when any tag is published | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| build: | |
| if: github.actor == 'OSBotify' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-ruby@v1 | |
| with: | |
| ruby-version: '2.7' | |
| - name: Install bundler | |
| run: gem install bundler | |
| - name: Install gems | |
| run: bundle install | |
| - name: Install node packages | |
| run: npm ci | |
| - name: Decrypt keystore | |
| run: cd android/app && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output my-upload-key.keystore my-upload-key.keystore.gpg | |
| env: | |
| LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} | |
| - name: Decrypt json key | |
| run: cd android/app && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output android-fastlane-json-key.json android-fastlane-json-key.json.gpg | |
| env: | |
| LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} | |
| - name: Run Fastlane beta | |
| run: bundle exec fastlane android beta | |
| # These Slack steps are duplicated in all workflows, if you make a change to this step, make sure to update all | |
| # the other workflows with the same changes | |
| - uses: 8398a7/action-slack@v3 | |
| name: Job failed Slack notification | |
| if: ${{ failure() }} | |
| with: | |
| status: custom | |
| fields: workflow, repo | |
| custom_payload: | | |
| { | |
| channel: '#announce', | |
| attachments: [{ | |
| color: "#DB4545", | |
| pretext: `<!here>`, | |
| text: `💥 ${process.env.AS_REPO} failed on ${process.env.AS_WORKFLOW} workflow 💥`, | |
| }] | |
| } | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | |
| - name: Set version in ENV | |
| if: ${{ success() }} | |
| run: echo "VERSION=$(npm run print-version --silent)" >> $GITHUB_ENV | |
| - uses: 8398a7/action-slack@v3 | |
| name: QA Slack notification | |
| if: ${{ success() }} | |
| with: | |
| status: custom | |
| fields: workflow, repo | |
| custom_payload: | | |
| { | |
| channel: '#qa', | |
| attachments: [{ | |
| color: "#39AA56", | |
| text: `*Expensify Chat :expensifychat:* ${process.env.AS_WORKFLOW} version *${{ env.VERSION }}* was deployed, please start *regression testing*: https://git.io/JUb0r`, | |
| }] | |
| } | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} |