Skip to content

Commit

Permalink
fix: fixes problem with lfs in checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
sennierer authored Oct 18, 2023
1 parent d518199 commit 72b9073
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/create_prov_graph_and_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
create-prov-graph:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
- name: Get changed ttl files in datasets
id: changed-files-specific
uses: tj-actions/changed-files@v35
Expand All @@ -28,4 +30,4 @@ jobs:
SPARQL_USER: ${{ secrets.SPARQL_USER }}
SPARQL_PASSWORD: ${{ secrets.SPARQL_PASSWORD }}
INTAVIA_TRIPLESTORE: ${{ secrets.INTAVIA_TRIPLESTORE }}
run: python create_prov_graph_and_push.py --file ${{ steps.changed-files-specific.outputs.all_changed_files }}
run: python create_prov_graph_and_push.py --file ${{ steps.changed-files-specific.outputs.all_changed_files }}

0 comments on commit 72b9073

Please sign in to comment.