Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit e681202

Browse files
committed
Merge branch 'main' of https://github.com/filiptronicek/iclip-mobile into main
2 parents 7040d69 + 7c85e12 commit e681202

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/npm-publish.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3+
4+
name: Build and publish to Google Play
5+
6+
on:
7+
release:
8+
types: [release]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 14
18+
- run: |
19+
npm i -g expo-cli
20+
expo login -u ${{ secrets.EXPO_CLI_USERNAME }} -p ${{ secrets.EXPO_CLI_PASSWORD }}
21+
npm i
22+
npm run aab
23+
#curl --user ${{ secrets.KEYS_USER }}:${{ secrets.KEYS_PASS }} ${{ secrets.KEYS_URL }} > key.json
24+
#expo upload:android --use-submission-service --key key.json
25+

0 commit comments

Comments
 (0)