Update with the latest base16 schemes #197
This file contains hidden or 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: Update with the latest base16 schemes | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * *" # Every day | |
| jobs: | |
| run: | |
| 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 | |
| steps: | |
| # tools/build.zsh requires Zsh | |
| - name: Install zsh | |
| run: "sudo apt-get update && sudo apt-get install zsh" | |
| # Checkout this repo into the workspace | |
| - name: "Fetch the repository code" | |
| uses: "actions/[email protected]" | |
| # Update schemes using tinted-builder-rust | |
| - name: "Update schemes" | |
| uses: "tinted-theming/tinted-builder-rust@latest" | |
| # Update other artifacts. | |
| - run: "tools/build.zsh no-generate" | |
| shell: 'zsh {0}' | |
| # Commit any changes | |
| - name: "Commit any changes" | |
| uses: "stefanzweifel/[email protected]" | |
| with: | |
| commit_message: "Update with the latest tinted-theming colorschemes" |