-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
New Error setting up Ionic, used to work #12
Comments
Let me check and will update you shortly, thanks! |
Thank you @coturiv , we are relying on this one. Please let us know 👍 |
Fixed in 1.04 |
Just wanted to say thinks for this fast fix!! |
Hello, thank you for the fix @coturiv, but I haven't been able to make it work with the latest ubuntu. Its probably me not understanding hot to use it. This is what I have now that is working name: Build and Deploy
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master
- name: Setup Ionic
# You may pin to the exact commit or the version.
# uses: coturiv/setup-ionic@e3c08419ce85c61a98f4e2c2767660b66cd121ea
uses: coturiv/setup-ionic@v1.0.3
with:
# Version range or exact version of Cordova to use
cordova-version: 8 # optional, default is 9
# Version range or exact version of Ionic to use
# ionic-version: # optional
# Whether to install Java
install-java: false # optional, default is true
# Whether to install CocoaPods
install-pods: false # optional, default is true
# Runs a single command using the runners shell
- name: Instal Dependencies
run: npm install
# Runs a single command using the runners shell
- name: Run build
run: npm run ionic:build -- --prod
... This is what I tried name: Build and Deploy
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use coturiv/setup-ionic
uses: coturiv/setup-ionic@v1
with:
java-version: 8
- name: Use coturiv/setup-ionic
uses: coturiv/setup-ionic@v1
with:
cordova-version: 8
# Runs a single command using the runners shell
- name: Run build
run: npm run ionic:build -- --prod
|
I can see they are working well on Ubuntu. https://github.com/coturiv/setup-ionic/blob/master/.github/workflows/ci.yml |
Hello,
Tried this action stopped working this morning, I have been using it for months now without a problem, but today I got this error. I tried
coturiv/setup-ionic@v1
andcoturiv/setup-ionic@v1.0.3
Thank you for writing this action.
The text was updated successfully, but these errors were encountered: