Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
First 5 places
  • Loading branch information
emgeier authored Oct 20, 2024
1 parent 33e9994 commit 0594f76
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Step 3: Identify the first 5 person XML files
- name: Identify first 5 XML files
run: |
find ./data/persons/tei -name '*.xml' | head -n 5 > xml_files.txt
find ./data/places/tei -name '*.xml' | head -n 5 > xml_files.txt
echo "Processing the first 5 XML files:"
cat xml_files.txt
Expand All @@ -64,7 +64,6 @@ jobs:
# Apply XSLT for JSON conversion and append it to bulk_data.json
java -jar saxon.jar -s:$file -xsl:json-stylesheet.xsl -o:temp.json
cat temp.json >> bulk_data.json
echo "" >> bulk_data.json # Ensure newline between documents
done < xml_files.txt
# Step 5: Configure AWS credentials
Expand Down

0 comments on commit 0594f76

Please sign in to comment.