Fetch stuff and commit changes #523
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: Fetch stuff and commit changes | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 */6 * * *" | |
permissions: | |
contents: write | |
jobs: | |
fetch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
- run: npm install | |
- run: sudo apt-get install -y libxml2-utils | |
- name: Install qsv | |
run: | | |
QSV_VERSION=0.134.0 | |
curl -L "https://github.com/jqnatividad/qsv/releases/download/${QSV_VERSION}/qsv-${QSV_VERSION}-x86_64-unknown-linux-musl.zip" -o qsv.zip | |
unzip qsv.zip qsv | |
sudo mv qsv /usr/local/bin/qsv | |
rm qsv.zip | |
- name: Fetch | |
run: | | |
curl -s "https://cdn.adfirst.media/hb/bustimes.js" | npx js-beautify > bustimes.js | |
curl -s "https://www.travelinedata.org.uk/noc/api/1.0/nocrecords.xml" | iconv -f utf-8 -t utf-8 -c | xmllint --format - > nocrecords.xml | |
curl -s "https://naptan.api.dft.gov.uk/v1/access-nodes?dataFormat=csv" > stops.csv | |
qsv partition AdministrativeAreaCode naptan stops.csv | |
rm stops.csv | |
- name: Commit and push | |
run: |- | |
git config user.name "Automated" | |
git config user.email "[email protected]" | |
git diff | |
echo "js" | |
git add bustimes.js | |
git commit -m "update bustimes.js" || true | |
echo "naptan" | |
git add naptan | |
git commit -m "update naptan" || true | |
echo "noc" | |
if [ "$(git diff --shortstat nocrecords.xml)" != " 1 file changed, 1 insertion(+), 1 deletion(-)" ]; then | |
git add nocrecords.xml | |
git commit -m "update nocrecords.xml (NOC)" || true | |
fi | |
git status | |
git push | |
naptan_viewer: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
pages: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- uses: actions/checkout@v4 | |
- working-directory: naptan_viewer | |
run: python naptan.py | |
- name: upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: naptan_viewer | |
- name: deploy to Github Pages | |
uses: actions/deploy-pages@v4 | |
id: deployment |