Merge pull request #26 from GeoscienceAustralia/develop #4
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: Sync Vocabs on Merge to Master | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Bring in repo - master branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: master | |
| - name: Install UV and Prezmanifest | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| uv tool install prezmanifest | |
| - name: Sync Vocabs | |
| env: | |
| FUSEKI_ADMIN_PASSWORD_PROD: ${{secrets.FUSEKI_ADMIN_PASSWORD_PROD}} | |
| FUSEKI_SPARQL_ENDPOINT_CGI_PROD: ${{vars.FUSEKI_SPARQL_ENDPOINT_CGI_PROD}} | |
| run: | | |
| pm sync -u admin -p $FUSEKI_ADMIN_PASSWORD_PROD manifest.ttl $FUSEKI_SPARQL_ENDPOINT_CGI_PROD true false true false |