This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
Changed service Id filteration in CDSS mapping screen for HWC (#46) #51
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: Package | |
on: | |
push: | |
branches: [ "develop"] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
Package: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Build with NPM | |
run: | | |
npm install -g @angular/cli | |
npm install [email protected] --save-dev | |
npm install | |
npm run build | |
npm run ng build --prod | |
- name: Create WAR file | |
run: jar -cvf adminui-v1.0.war -C dist . | |
- name: Upload WAR file as artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Admin-UI | |
path: adminui-v1.0.war |