Update Search Graph with data from dataset 'Rijksmuseum Objects' in the Knowledge Graph #105
This file contains 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: Update Search Graph with data from dataset 'Rijksmuseum Objects' in the Knowledge Graph | |
# "At minute 0 past hour 4 and 16" | |
on: | |
schedule: | |
- cron: "0 4,16 * * *" | |
# Run a single workflow at a time | |
concurrency: | |
group: search-graph | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout data repository | |
uses: actions/checkout@v4 | |
with: | |
path: ./data | |
sparse-checkout: rijksmuseum-objects | |
- name: Checkout code repository | |
uses: actions/checkout@v4 | |
with: | |
path: ./code | |
repository: colonial-heritage/integration-layer | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install app | |
run: | | |
cd ./code | |
npm install --no-progress | |
npx turbo run build --filter=@colonial-collections/graph-create | |
- name: Create graph | |
run: | | |
cd ./data | |
mkdir -p "$RUNNER_TEMP" | |
test -f ./rijksmuseum-objects/data/data.tar.zst && tar --zstd -xf ./rijksmuseum-objects/data/data.tar.zst -C "$RUNNER_TEMP" | |
../code/apps/graph-create/dist/cli.js create \ | |
--resource-dir ./rijksmuseum-objects/resources \ | |
--data-file "$RUNNER_TEMP/data.sqlite" \ | |
--iterate-endpoint-url "${{ vars.SPARQL_ENDPOINT_URL_KG }}" \ | |
--iterate-query-file ./rijksmuseum-objects/queries/iterate.rq \ | |
--generate-endpoint-url "${{ vars.SPARQL_ENDPOINT_URL_KG }}" \ | |
--generate-query-file ./rijksmuseum-objects/queries/generate.rq \ | |
--generate-batch-size 5000000 \ | |
--triplydb-instance-url "${{ vars.TRIPLYDB_INSTANCE_URL }}" \ | |
--triplydb-api-token "${{ secrets.TRIPLYDB_API_TOKEN }}" \ | |
--triplydb-account "${{ vars.TRIPLYDB_ACCOUNT }}" \ | |
--triplydb-dataset "${{ vars.TRIPLYDB_DATASET_SG }}" \ | |
--triplydb-service "search" \ | |
--triplydb-service-templates-file "../code/packages/triplydb/data/search-graph-templates.json" \ | |
--graph-name "https://data.colonialcollections.nl/rijksmuseum-objects" \ | |
--temp-dir "$RUNNER_TEMP" | |
- name: Save changes | |
run: | | |
cd ./data | |
mkdir -p ./rijksmuseum-objects/data | |
test -f "$RUNNER_TEMP/data.sqlite" && tar --zstd -cf ./rijksmuseum-objects/data/data.tar.zst -C "$RUNNER_TEMP" data.sqlite | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit --quiet -a -m "Save changes" || true | |
git push --force -u origin |