Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ on:
branches:
- development
- master
workflow_dispatch: {}
workflow_dispatch:
inputs:
force_update_items:
description: 'Force rebuild all marketplace items (updates all Sphinx documentation)'
required: false
default: false
type: boolean

jobs:
build_strategy_matrix:
Expand Down Expand Up @@ -180,13 +186,14 @@ jobs:
- name: Build marketplace docs
env:
CHANNEL: ${{ steps.branch.outputs.branch }}
FORCE_UPDATE: ${{ github.event.inputs.force_update_items == true && '-f' || '' }}
run: |
cd marketplace
pwd
git pull origin
cd ..
python -m cli.cli build-marketplace -s ./functions/src -sn functions -m marketplace -c $CHANNEL -v -f
python -m cli.cli build-marketplace -s ./modules/src -sn modules -m marketplace -c $CHANNEL -v -f
python -m cli.cli build-marketplace -s ./functions/src -sn functions -m marketplace -c $CHANNEL -v $FORCE_UPDATE
python -m cli.cli build-marketplace -s ./modules/src -sn modules -m marketplace -c $CHANNEL -v $FORCE_UPDATE
## Uncomment the following lines if you want to upload the built marketplace as an artifact
# - name: Upload built marketplace as artifact
# uses: actions/upload-artifact@v4
Expand Down