mirror of
https://github.com/SunRed/theme-dark-arc-gitea.git
synced 2024-12-04 14:08:12 +01:00
Add css minifier action
This commit is contained in:
parent
6e2c1876ca
commit
22b79b3563
2 changed files with 28 additions and 1 deletions
27
.github/workflows/minify.yml
vendored
Normal file
27
.github/workflows/minify.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
paths:
|
||||||
|
- 'theme-dark-arc.css'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
minify:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: check out the repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: auto minify the files
|
||||||
|
uses: nizarmah/auto-minify@v3
|
||||||
|
with:
|
||||||
|
overwrite: false
|
||||||
|
maxdepth: 1
|
||||||
|
|
||||||
|
- name: auto commit the minified files
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
|
with:
|
||||||
|
commit_message: "bot: Minify theme"
|
||||||
|
file_pattern: '*.min.css'
|
||||||
|
branch: ${{ github.ref }}
|
|
@ -33,7 +33,7 @@ Create `/public/assets/css` below your $GITEA_CUSTOM path, MY custom path is `/v
|
||||||
|
|
||||||
sudo mkdir -p /var/lib/gitea/custom/public/assets/css
|
sudo mkdir -p /var/lib/gitea/custom/public/assets/css
|
||||||
cd /var/lib/gitea/custom/public/assets/css
|
cd /var/lib/gitea/custom/public/assets/css
|
||||||
wget https://raw.githubusercontent.com/Jieiku/theme-dark-arc-gitea/main/theme-dark-arc.css
|
curl -o theme-dark-arc.css https://raw.githubusercontent.com/Jieiku/theme-dark-arc-gitea/main/theme-dark-arc.min.css
|
||||||
|
|
||||||
## Make sure ownership is correct:
|
## Make sure ownership is correct:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue