Merge branch 'develop' into ve/prez4_implement_workflows #5
Workflow file for this run
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 Prez4 | |
| on: | |
| push: | |
| branches: [ve/prez4_implement_workflows] | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Bring in repo - prez4_implement_workflows branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ve/prez4_implement_workflows | |
| - name: Install Prezmanifest | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| uv tool install prezmanifest | |
| - name: Sync Vocabs | |
| env: | |
| FUSEKI_ADMIN_PASSWORD: ${{secrets.FUSEKI_ADMIN_PASSWORD}} | |
| FUSEKI_SPARQL_ENDPOINT_GA_NONPROD: ${{vars.FUSEKI_SPARQL_ENDPOINT_GA_NONPROD}} | |
| run: | | |
| pm sync -u admin -p $FUSEKI_ADMIN_PASSWORD manifest.ttl $FUSEKI_SPARQL_ENDPOINT_GA_NONPROD false false false false |