Skip to content

Commit

Permalink
Fixed placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Feb 13, 2023
1 parent 618a589 commit 51e7c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
run: sudo apt-get update && sudo apt-get install curl
shell: bash
- name: Download Jena
run: curl -sS --fail "${{ inputs.asf-archive }}jena/binaries/apache-jena-$${{ inputs.jena-version }}.tar.gz" -o "${{ runner.temp }}/jena.tar.gz"
run: curl -sS --fail "${{ inputs.asf-archive }}jena/binaries/apache-jena-${{ inputs.jena-version }}.tar.gz" -o "${{ runner.temp }}/jena.tar.gz"
shell: bash
- name: Unpack Jena
run: tar -zxf jena.tar.gz
Expand All @@ -29,7 +29,7 @@ runs:
- run: echo "$JENA_HOME/bin" >> $GITHUB_PATH
shell: bash
env:
JENA_HOME: "${{ runner.temp }}/apache-jena-$${{ inputs.jena-version }}"
JENA_HOME: "${{ runner.temp }}/apache-jena-${{ inputs.jena-version }}"
- name: Checkout code
uses: actions/checkout@v2
- name: Find RDF files and call riot for each of them
Expand Down

0 comments on commit 51e7c37

Please sign in to comment.