Build directory and data #436
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
# This is a basic workflow to help you get started with Actions | |
name: Build directory and data | |
# Controls when the workflow will run | |
on: | |
schedule: | |
- cron: 30 18 * * 1,3,5 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: {} | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: install cpanm and multiple modules | |
uses: perl-actions/install-with-cpanm@v1 | |
with: | |
install: | | |
JSON::XS | |
YAML::XS | |
Web::Scraper | |
Geo::Coordinates::OSGB | |
# Runs script | |
- name: Run build script | |
working-directory: data/ | |
run: | | |
perl build.pl | |
- name: Make data tiles | |
working-directory: data/ | |
run: | | |
perl makeTiles.pl 10 | |
- name: Commit changes to files | |
working-directory: ./ | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add data/postcodes.tsv | |
git add data/imd.svg | |
git add data/build.log | |
git add docs/index.html | |
git add docs/data/lastupdated.txt | |
git add docs/data/ndirs.txt | |
git add docs/data/ngeocoded.txt | |
git add docs/data/nspaces.txt | |
git add docs/data/places.json | |
git add docs/data/sources.json | |
git add docs/data/summary.html | |
git add docs/data/tiles/10/ | |
git commit -m "Update data" || exit 0 | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |