debug mode for sentry env variable #18
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: Expo builds | |
on: | |
push: | |
branches: | |
- production | |
- preview | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: ${{ github.ref_name }} | |
steps: | |
- name: π Setup repo | |
uses: actions/checkout@v3 | |
- name: π Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: npm | |
- name: π Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: π¦ Install dependencies | |
run: npm ci | |
# - name: Run tests | |
# run: npm run test:ci | |
- name: π Build app and submit | |
run: eas build -p android --non-interactive --auto-submit --profile ${{ github.ref_name }} |