2023-11-21 08:20:20 +09:00
|
|
|
name: copies
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
jobs:
|
2023-11-21 08:21:32 +09:00
|
|
|
copies:
|
2023-11-21 08:20:20 +09:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2023-11-21 08:29:03 +09:00
|
|
|
- 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
|
2024-08-23 22:07:47 +09:00
|
|
|
- run: cp TangerineUI-lagoon.css mastodon/app/javascript/styles/tangerineui-lagoon/tangerineui-lagoon.scss
|
2023-11-21 08:20:20 +09:00
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
|
|
with:
|
|
|
|
commit_message: Copy CSS files to installation folder
|
|
|
|
file_pattern: 'mastodon/'
|