diff --git a/.github/workflows/native-production-build.yml b/.github/workflows/native-production-build.yml new file mode 100644 index 000000000..31a74968a --- /dev/null +++ b/.github/workflows/native-production-build.yml @@ -0,0 +1,32 @@ +name: EAS Build + +on: + push: + branches: + - main + paths: + - 'packages/app/**' + - 'apps/expo/**' + - 'packages/ui/**' + - 'packages/shared-types/**' + - 'packages/config/**' + - 'packages/crosspath/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup EAS + uses: ./.github/actions/setup-eas + with: + expo-token: ${{ secrets.EXPO_TOKEN }} + + - name: Build on EAS + run: eas build --platform all --profile production --non-interactive \ No newline at end of file