Skip to content

Merge branch 'master' into master #4

Merge branch 'master' into master

Merge branch 'master' into master #4

name: Process Building Blocks
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Update submodules
run: git submodule update --recursive --remote
- name: OGC BB postprocess
uses: opengeospatial/bblocks-postprocess/full@v1
with:
items_dir: registereditems
register_file: register.json
generated_docs_path: generateddocs
annotated_path: annotated-schemas
base_url: https://${{ github.event.repository.owner.login }}.github.io/${{github.event.repository.name}}/
fail_on_error: 'false'
clean: 'true'
test_outputs_path: tests
- name: Add & Commit
if: ${{ !endsWith(github.repository, '/bblock-template') }}
uses: EndBug/add-and-commit@v9
with:
message: Building blocks postprocessing
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.x
- name: Entail, validate and upload BBR
env:
DB_USERNAME: ${{ secrets.UPLOAD_GRAPH_STORE_USERNAME }}
DB_PASSWORD: ${{ secrets.UPLOAD_GRAPH_STORE_PASSWORD }}
run: |
python -m pip install -U pip
python -m pip install ogc-na
python -m ogc.na.update_vocabs .catalog.ttl -m bblocks.ttl \
--update --graph-store ${{ vars.UPLOAD_GRAPH_STORE_URL }}
deploy-gh-pages:

Check failure on line 48 in .github/workflows/process-building-blocks.yml

View workflow run for this annotation

GitHub Actions / Process Building Blocks

Invalid workflow file

The workflow is not valid. .github/workflows/process-building-blocks.yml (Line: 48, Col: 3): Error calling workflow 'rob-metalinkage/bblocks/.github/workflows/deploy-gh-pages.yml@a2c6f0723bdb88eec708f153cb345b4415e8ddb2'. The workflow 'rob-metalinkage/bblocks/.github/workflows/deploy-gh-pages.yml@a2c6f0723bdb88eec708f153cb345b4415e8ddb2' is requesting 'pages: write, id-token: write', but is only allowed 'pages: none, id-token: none'.
needs: build
uses: ./.github/workflows/deploy-gh-pages.yml