Skip to content

Merge pull request #30 from mr-fitzie/main #95

Merge pull request #30 from mr-fitzie/main

Merge pull request #30 from mr-fitzie/main #95

# Publish new set of GitHub Pages when new pictures are committed to main
on:
workflow_dispatch:
push:
branches:
- main
paths:
- ".github/workflows/publish_pix_data.yml"
- "**/*.pix"
name: Generate Pix List for Viewer
jobs:
generate_data_json:
name: Generate Data JSON
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.ref }}
uses: actions/checkout@v4
- name: Generate data.js
env:
GIT_SHA: ${{ github.sha }}
run: |
import glob
import json
import os
from datetime import datetime
PIC_ROOT = "Pictures/"
pics = {}
for file in glob.glob(f"{PIC_ROOT}**/*.pix", recursive=True):
if os.path.islink(file):
continue
path, core = os.path.split(file.replace(PIC_ROOT, ""))
if path not in pics:
pics[path] = []
pics[path].append(core)
try:
pics.pop("templates")
except Exception:
pass
with open(f"data_i2c_pix.json", "w") as outfile:
data = {
"pictures": pics,
"version": {
"date": datetime.now().isoformat(),
"sha": os.environ.get("GIT_SHA", "unknown")[:7],
},
}
json.dump(data, outfile)
shell: python
- name: Archive data JSON
uses: actions/upload-artifact@v4
with:
name: data-i2c-pix-json
path: data_i2c_pix.json
retention-days: 5
update_gh_pages:
name: Update Data on GitHub Pages
needs: generate_data_json
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.ref }}
uses: actions/checkout@v4
with:
ref: gh-pages
- name: Download data JSON
uses: actions/download-artifact@v4
with:
name: data-i2c-pix-json
- name: Commit data json
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add data_i2c_pix.json
git commit -am "automated update of json data"
git push