chore(deps): update zoeyvid/nginx-quic docker tag to v375 #217
Workflow file for this run
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: tailwindcss-update | |
on: | |
push: | |
schedule: | |
- cron: "0 */6 * * *" | |
workflow_dispatch: | |
jobs: | |
tailwindcss-update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: cp -v src/tailwind.config.js tailwind.config.js | |
- name: update tailwindcss (minify) | |
uses: ZoeyVid/tailwindcss-update@main | |
with: | |
input: src/tailwind-input.css | |
output: src/public/tailwind.css | |
params: "--minify" | |
- name: push changes | |
run: | | |
git add --force src/public/tailwind.css | |
git config user.name "GitHub" | |
git config user.email "noreply@github.com" | |
git diff-index --quiet HEAD || git commit -sm "tailwindcss-update" | |
git push |