CD #5
This file contains 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: CD | |
on: | |
workflow_run: | |
workflows: [CI] | |
types: | |
- completed | |
jobs: | |
CD: | |
name: Continuous Delivery | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Node setup | |
uses: actions/node-setup@v3 | |
with: | |
node-version: 18.x | |
- name: EAS setup | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
packager: npm | |
token: ${{ secrets.EAS_TOKEN }} | |
- name: Build | |
run: eas build --platform android --profile devClient --non-interactive --non-wait |