Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sdevalk committed Apr 13, 2024
1 parent 25a7119 commit 3dc48b5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/communities-create-graph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,25 @@ jobs:
- 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-communities
- name: Create graph
env:
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
run: |
cd ./code
mkdir -p "$RUNNER_TEMP"
./apps/graph-create-communities/dist/cli.js create \
--file "$RUNNER_TEMP/communities.nt" \
--graph "https://data.colonialcollections.nl/communities" \
--resource-dir "$RUNNER_TEMP" \
--triplydb-instance-url "${{ vars.TRIPLYDB_INSTANCE_URL }}" \
--triplydb-api-token "${{ secrets.TRIPLYDB_API_TOKEN }}" \
--triplydb-account "${{ vars.TRIPLYDB_ACCOUNT }}" \
--triplydb-dataset "${{ vars.TRIPLYDB_DATASET_KG }}" \
--triplydb-service "kg"
--triplydb-service "kg" \
--graph-name "https://data.colonialcollections.nl/communities" \
--temp-dir "$RUNNER_TEMP"

0 comments on commit 3dc48b5

Please sign in to comment.