Initialize TEI #63
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: Initialize TEI | |
on: | |
workflow_dispatch: | |
jobs: | |
build_pages: | |
name: Publish Edition TEI/XML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Perform Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java / Ant | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Install Ant | |
run: | | |
apt-get update && apt-get install ant -y --no-install-recommend | |
./scripts/sh/dl_saxon.sh | |
- name: Fetch data | |
run: | | |
./scripts/sh/fetch_data.sh | |
- name: Build | |
run: | | |
ant -f scripts/ant/build.xml | |
- name: Commit data | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Downloaded/Updated Data |