Skip to content

Set up your GitHub Actions workflow with Cordova/Ionic environment

License

Notifications You must be signed in to change notification settings

human-nature-lab/setup-ionic

 
 

Repository files navigation

setup-ionic

Set up your GitHub Actions workflow with Cordova/Ionic environment. Only supports macos & ubuntu at this time.

example usage:

- name: Set up JDK 1.8
  uses: actions/setup-java@v1
  with:
    java-version: 1.8
- name: Use coturiv/setup-ionic
  uses: coturiv/setup-ionic@v1
  with:
    cordova-version: 8

- name: Build
  run: |
    ionic cordova build android --prod

important*

From Ubuntu 20.04 runners, the default version of Java is 11, so you need to specify it to 8(1.8), due to the requirement of cordova, but will be removed in future releases. See here, and here

- name: Set up JDK 1.8
  uses: actions/setup-java@v1
  with:
    java-version: 1.8

About

Set up your GitHub Actions workflow with Cordova/Ionic environment

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 94.9%
  • JavaScript 5.1%