#10961: Fix - Styleeditor not working with only two available styles … #1254
This file contains hidden or 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: build artifacts | |
on: | |
push: | |
branches: | |
- master | |
# using filter pattern: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet | |
- '[cC][0-9][0-9][0-9]-+**' # c123 or c123-something for custom branch | |
- '[0-9][0-9][0-9][0-9].[0-9][0-9].xx' # stable brances. E.g. 2021.01.xx | |
jobs: | |
build-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "checking out" | |
uses: actions/checkout@v3 | |
- name: "setting up npm" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: "setting up Java" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11.x' | |
############ | |
# CACHING | |
########## | |
- name: "cache node modules" | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: "cache maven dependencies" | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: mapstore-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
mapstore-${{ runner.os }}-maven- | |
############ | |
# Build | |
########## | |
- run : "npm install" | |
- run: "npm run fe:build" | |
- run: "npm run jsdoc:build" | |
- run: "mvn clean install -Dmapstore2.version=$GITHUB_REF_NAME -Pprintingbundle" | |
############ | |
# Publish | |
########## | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: MapStore-Artifacts${{ github.sha }} | |
path: | | |
product/target/mapstore.war | |
printing/target/mapstore-printing.zip |