Update with the latest colorschemes #136
Workflow file for this run
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 colorschemes | |
on: | |
workflow_dispatch: | |
# schedule: | |
# - cron: "0 0 * * 0" # https://crontab.guru/every-week | |
# push: | |
# branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch the repository code | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
- run: bundle exec rake | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
- name: Build | |
env: | |
THEMIS_VIM: ${{ steps.vim.outputs.executable }} | |
run: | | |
bash build.sh THEMIS_VIM | |
- name: "Commit the changes, if any" | |
uses: "stefanzweifel/git-auto-commit-action@be823a7e51f116fecebc222b8307716921375992" # 5.0.1 | |
with: | |
commit_message: "Update with the latest tinted-theming colorschemes" | |
branch: ${{ inputs.ref }} | |
commit_user_name: "tinted-theming-bot" | |
commit_user_email: "[email protected]" | |
commit_author: "tinted-theming-bot <[email protected]>" | |
# - name: Deploy | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# github_token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
# publish_dir: ./out |