Created
February 26, 2020 18:33
-
-
Save r3dm1ke/00211ef6380b9e918a561df18acd623b to your computer and use it in GitHub Desktop.
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: Test & Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| name: Install and publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - uses: expo/expo-github-action@v5 | |
| with: | |
| expo-version: 3.x | |
| expo-username: ${{ secrets.EXPO_CLI_USERNAME }} | |
| expo-password: ${{ secrets.EXPO_CLI_PASSWORD }} | |
| expo-packager: npm | |
| - run: npm ci | |
| - run: npm test | |
| - run: expo doctor | |
| - run: expo publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment