Skip to content

Commit

Permalink
Fix yml
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Mar 2, 2024
1 parent 4b784a6 commit 1bb8422
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ jobs:
run: npm pack

- name: Create capacitor app
run: npm init @capacitor/app temp -- --name temp --app-id temp.com
run: cd temp
run: npm install
run: npm i ../*.tgz
run: |
npm init @capacitor/app temp -- --name temp --app-id temp.com
cd temp
npm install
npm i ../*.tgz
- name: Add platform
run: npm install @capacitor/android
run: npx cap add android
run: |
npm install @capacitor/android
npx cap add android
- name: Build app
run: npx cap build
Expand Down

0 comments on commit 1bb8422

Please sign in to comment.