chore: bump changed userstyles #28
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: CI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
# Prevent infinite loops by checking if the last commit was autogenerated. | |
if: ${{ github.repository == 'catppuccin/userstyles' && github.event.commits[0].author.name != 'github-actions' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.USERSTYLES_TOKEN }} | |
fetch-depth: 2 | |
- name: Setup Deno | |
uses: nekowinston/setup-deno@main | |
with: | |
deno-version: v2.1.3 | |
- name: Bump changed userstyles | |
run: | | |
git diff --name-only HEAD^1 HEAD | grep '^styles/.*catppuccin\.user\.less$' | xargs deno task bump | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: bump changed userstyles" | |
default_author: github_actions | |
push: false | |
- name: Update generated files | |
run: deno task generate | |
env: | |
GITHUB_TOKEN: ${{ secrets.USERSTYLES_TOKEN }} | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: update generated files" | |
default_author: github_actions | |
push: false | |
- name: Format files | |
run: deno fmt | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "style: deno fmt" | |
default_author: github_actions | |
push: false | |
- name: Push changes | |
run: git push origin "HEAD:${{ github.ref }}" --atomic |