We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a3783 commit 3214310Copy full SHA for 3214310
.github/workflows/upload-to-triplestore.yml
@@ -23,7 +23,7 @@ jobs:
23
upload:
24
runs-on: ubuntu-latest
25
steps:
26
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
27
with:
28
python-version: '3.12'
29
- run: pip install ogc-na
@@ -77,6 +77,7 @@ jobs:
77
auth_details = None
78
if 'SPARQL_USERNAME' in os.environ:
79
auth_details = (os.environ["SPARQL_USERNAME"], os.environ.get("SPARQL_PASSWORD", ""))
80
+ print('Using authentication')
81
82
for bblock in bblocks:
83
ontology = bblock.get('ontology')
@@ -93,4 +94,4 @@ jobs:
93
94
newg, entail_artifacts = profile_registry.entail(g, profile_uris)
95
96
update_vocabs.load_vocab(newg, graph_uri=graph_uri,
- graph_store=sparql_endpoint, auth_details=auth_details)
97
+ graph_store=sparql_endpoint, auth=auth_details)
0 commit comments