Skip to content

Add missing query parameter #20

Add missing query parameter

Add missing query parameter #20

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: GeoNode Client thuenen_4.4.x CI (build)
concurrency:
group: "client_build_thuenen_4.4.x"
cancel-in-progress: true
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow on push events but only for the 4.4.x branch
push:
branches: [ thuenen_4.4.x ]
paths:
- "VERSION"
- "geonode_mapstore_client/client/**"
- "!geonode_mapstore_client/client/version.txt"
permissions:
# extent TOKEN's permissions
pull-requests: write
contents: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_and_commit:
env:
working-directory: ./geonode_mapstore_client/client
runs-on: ubuntu-latest
steps:
- name: "Checking out"
uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
###########
# SET UP
#########
- name: "Setting up npm"
uses: actions/setup-node@v4
with:
node-version: 20
############
# 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 }}-
###############
# NPM BUILD
#############
- name: "Run npm install"
run: npm install
working-directory: ${{env.working-directory}}
- name: "Run npm compile"
run: npm run compile
working-directory: ${{env.working-directory}}
###############
# COMMIT
###############
- name: "Stage files"
run: git add --all
- name: "Create Pull Request"
uses: peter-evans/create-pull-request@v5
with:
base: "thuenen_4.4.x"
title: "[thuenen_4.4.x] new client build"
body: "Automated client build from GeoNode client thuenen_4.4.x CI"
delete-branch: true