Skip to content

Commit

Permalink
#95 Automatiseren Deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
rickdenhaan committed Oct 24, 2023
1 parent 106460d commit 50ee04c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ jobs:
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
node-version: 18

- name: πŸ— Authenticate Node
uses: jgierer12/npm-auth-gpr@v1
with:
token: ${{ secrets.NPM_ACCESS_TOKEN }}

- name: πŸ— Setup NPM Registry
run: npm config set @wecreatesolutions:registry https://npm.pkg.github.com/

- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
Expand All @@ -23,7 +30,7 @@ jobs:
token: ${{ secrets.EXPO_TOKEN }}

- name: πŸ“¦ Install dependencies
run: npm i install
run: npm ci

- name: πŸš€ Build and submit app
run: eas build --non-interactive --profile production --platform all --auto-submit

0 comments on commit 50ee04c

Please sign in to comment.