forgejo-themes/.forgejo/workflows/build-and-release.yaml
Lea bb2c013dfb
Some checks reported warnings
Build and release / release (push) Has been cancelled
let's do tar instead
2023-07-29 21:19:10 +02:00

42 lines
1 KiB
YAML

name: Build and release
on:
push:
branches: [master]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Install lessc
run: npm install -g less
- name: Check out repository
uses: actions/checkout@v3
- name: Build CSS
run: |
mkdir dist
./build.sh
tar -C dist -cvf themes.tar .
mv themes.tar dist
id: build
- name: Publish release
uses: actions/forgejo-release@v1
with:
direction: upload
release-dir: dist
token: ${{ github.token }}
tag: $(git rev-parse --short ${{ github.sha }})
release-notes: |
Automatic release triggered by commit ${{ github.sha }}
Add the following to \`app.ini\`:
\`\`\`ini
[ui]
THEMES = ${{ steps.build.outputs.themes }}
\`\`\`
And download the CSS files from this release to \`\$GITEA_DATA_DIR/gitea/public/css\`. `themes.tar` contains all CSS files for convenience.