Scheduled update #31
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: Scheduled update | |
on: | |
schedule: | |
- cron: '5 8 21 * *' | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/setup-python@v5 | |
with: | |
cache: 'pip' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: pip install rdflib requests | |
- run: python3 osm_wikidata.py | |
- run: npm install | |
- run: npm run build | |
- run: | | |
set -ex | |
git diff --name-only | |
if [ $(git diff --name-only | wc -l) -gt 0 ]; then | |
tag=$(jq -r '.version' package.json) | |
# The GH api only allows for single file commits right now | |
for file in $(git diff --name-only); do | |
gh api --method PUT -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ | |
"/repos/${{ github.repository }}/contents/$file" \ | |
--field "message=Automatic update for ${tag}: ${file}" \ | |
--field "encoding=base64" \ | |
--field "branch=${{ github.ref_name }}" \ | |
--field "content=$(base64 -i "${file}")" \ | |
--field "sha=$(git rev-parse "${{ github.ref_name }}:${file}")" | |
done | |
sleep 5 # Purely to ensure that GH has processed the updates | |
fi | |
env: | |
GH_TOKEN: ${{ github.token }} | |
tag: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
needs: update | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- run: | | |
tag=$(git describe --tags --abbrev=0) || release_needed="true" | |
for file in $(git diff ${tag}..HEAD --name-only); do | |
if [ $file == "taginfo.json" ] || [ $file == "index.json" ] || [ $file == "package.json"] ; then | |
release_needed="true" | |
break | |
fi | |
done | |
if [ $release_needed == "true" ]; then | |
tag=$(jq -r '.version' package.json) | |
object=$(git rev-parse --verify HEAD) | |
gh api --method POST -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ | |
/repos/${{ github.repository }}/git/tags \ | |
--field "tag=${tag}" \ | |
--field "message=${tag}" \ | |
--field "object=${object}" \ | |
--field "type=commit" \ | |
--field "tagger[name]=github-actions[bot]" \ | |
--field "tagger[email]=41898282+github-actions[bot]@users.noreply.github.com" \ | |
--field "tagger[date]=$(date --iso-8601=seconds)" | |
gh api --method POST -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ | |
/repos/${{ github.repository }}/git/refs \ | |
--field "ref=refs/tags/${tag}" \ | |
--field "sha=${object}" | |
gh release create ${tag} --generate-notes | |
fi |