Roles: Add roles Array to the user #227
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/[email protected] | |
with: | |
path: './SuperHumanPortal' | |
- name: Checkout PureMVC | |
uses: actions/[email protected] | |
with: | |
repository: 'PureMVC/puremvc-as3-multicore-framework' | |
path: './puremvc-as3-multicore-framework' | |
- name: Set up JDK | |
uses: actions/[email protected] | |
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/[email protected] | |
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 |