Add more comments to CommandLaunchNomadLink.as for #53. #296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Super.Human.Portal Dev | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 16 ] | |
steps: | |
- name: Checkout Super.Human.Portal | |
uses: actions/checkout@v3.3.0 | |
with: | |
path: './SuperHumanPortal' | |
- name: Checkout PureMVC | |
uses: actions/checkout@v3.3.0 | |
with: | |
repository: 'PureMVC/puremvc-as3-multicore-framework' | |
path: './puremvc-as3-multicore-framework' | |
- name: Set up JDK | |
uses: actions/setup-java@v3.9.0 | |
with: | |
distribution: adopt | |
java-version: ${{ matrix.java }} | |
- name: Build Super.Human.Portal | |
run: mvn -s SuperHumanPortal/Super.Human.Portal_Royale/settings.xml -P build-dev-release clean package --file SuperHumanPortal/Super.Human.Portal_Royale/pom.xml | |
- name: Store artifact in GitHub | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: Super.Human.Portal-dev | |
path: './SuperHumanPortal/Super.Human.Portal_Royale/target/javascript/bin/js-release' | |
retention-days: 5 | |
if-no-files-found: error |