Changed the data stuff from db to source and changed the dist.css name to import.css because more userfriendliness(tm) hopefully not nuking everything, i kept the old dist so i dont also nuke the import link for everyone

This commit is contained in:
coolesding 2023-10-02 10:49:45 +02:00 committed by GitHub
parent 9988b98f03
commit 4868f921dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 10 deletions

View file

@ -5,10 +5,10 @@ on:
branches:
- main
paths:
- ".github/workflows/generate-db.yml"
- ".github/workflows/generate-source.yml"
- ".github/scripts/generate/**/*.*"
- "db/data.json"
- "db/template.css"
- "source/data.json"
- "source/template.css"
pull_request:
branches:
- main
@ -50,6 +50,6 @@ jobs:
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add db/dist.css
git commit -m "chore(db): update dist.css (${{ github.sha || 'manual trigger' }})" || true
git add source/import.css
git commit -m "Update import.css (${{ github.sha || 'manual trigger' }})" || true
git push