Validate and process Building Blocks #23
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: Validate and process Building Blocks | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| jobs: | |
| validate-and-process: | |
| # Avoid running the workflow on template clone | |
| if: github.run_number != 1 | |
| name: Validate and process | |
| uses: opengeospatial/bblocks-postprocess/.github/workflows/validate-and-process.yml@master | |
| secrets: | |
| sparql_username: ${{ secrets.sparql_username }} | |
| sparql_password: ${{ secrets.sparql_password }} |