Skip to content

Merge pull request #480 from adsr303/fix-nanosecond #110

Merge pull request #480 from adsr303/fix-nanosecond

Merge pull request #480 from adsr303/fix-nanosecond #110

Workflow file for this run

name: Run Generators
on:
workflow_dispatch:
push:
paths:
- 'themes/*'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Run Python scripts
run: |
echo 🏅 - Generate JSON
python tools/pipe-generateJson.py
echo 🏅 - Generate JSON files
python tools/pipe-generateJsonFiles.py
echo 🏅 - Generate CSV
python tools/pipe-generateCsv.py
echo 🏅 - Generate Installers
python tools/pipe-generateShFiles.py
echo 🏅 - Update themes in Gogh file
python tools/pipe-updateThemes.py
echo 🏅 - Pipeline run date
python tools/pipe.py
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Run WCAG generator script with Deno
run: |
echo 🏅 - Running WCAG generator script
deno run --allow-all tools/pipe-generateWcag.js
- name: Commit and push changes
env:
GIT_AUTHOR_NAME: github-actions[bot]
GIT_AUTHOR_EMAIL: github-actions[bot]@github.com
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "Gogh 🤖"
git push