1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Test testing workflow

This commit is contained in:
Zhiyuan Zheng
2021-01-16 02:02:44 +01:00
parent 64b0e413b3
commit 154838fdd4
3 changed files with 26 additions and 8 deletions

26
.github/workflows/testing.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Publish testing
on:
push:
branches:
- testing
jobs:
publish:
name: Install and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
- uses: expo/expo-github-action@v5
with:
expo-version: 4.x
expo-username: ${{ secrets.EXPO_USERNAME }}
expo-token: ${{ secrets.EXPO_TOKEN }}
expo-cache: true
- run: yarn install
- run: expo publish --release-channel=testing
env:
- SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
- SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
- SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}