mirror of
https://github.com/nileane/TangerineUI-for-Mastodon
synced 2024-11-24 15:16:11 +09:00
20 lines
665 B
YAML
20 lines
665 B
YAML
name: copies
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
jobs:
|
|
copies:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: cp TangerineUI.css mastodon/app/javascript/styles/tangerineui/tangerineui.scss
|
|
- run: cp TangerineUI-purple.css mastodon/app/javascript/styles/tangerineui-purple/tangerineui-purple.scss
|
|
- run: cp TangerineUI-cherry.css mastodon/app/javascript/styles/tangerineui-cherry/tangerineui-cherry.scss
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: Copy CSS files to installation folder
|
|
file_pattern: 'mastodon/'
|