diff options
author | Jamy <jamy@jamygolden.com> | 2022-06-25 02:12:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 02:12:52 +0200 |
commit | 0fca56efdc43ef878d9aead0bb1254154f316757 (patch) | |
tree | 9a8a7fba65b183da11b53fc3f2a900713ab4d740 /.github/workflows | |
parent | b97803edefe1d486530ba1a526ba261d784c81fc (diff) |
Use base16-builder-go to generate colorschemes (#58)
- Update contribution information
- Add bug report and feature request templates
- Ensure a max of 72 chars per line in markdown files
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/update.yml | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index c8a277f..b18b58a 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -1,4 +1,4 @@ -name: Update with the latest base16 colorschemes +name: Update with the latest base16-project/base16-schemes on: workflow_dispatch: schedule: @@ -8,20 +8,18 @@ jobs: run: runs-on: ubuntu-latest steps: - - name: Set up Python - uses: actions/setup-python@v1 - with: - python-version: 3.8 - - name: Upgrade pip - run: python -m pip install --upgrade pip - - name: Install pybase16 - run: pip install pybase16-builder - name: Fetch the repository code uses: actions/checkout@v3 with: token: ${{ secrets.BOT_ACCESS_TOKEN }} - - name: Run make - run: make + - name: Fetch the schemes repository + uses: actions/checkout@v3 + with: + repository: base16-project/base16-schemes + path: schemes + token: ${{ secrets.BOT_ACCESS_TOKEN }} + - name: Update schemes + uses: base16-project/base16-builder-go@latest - name: Commit the changes, if any uses: stefanzweifel/git-auto-commit-action@v4 with: @@ -30,4 +28,3 @@ jobs: commit_user_name: base16-project-bot commit_user_email: base16themeproject@proton.me commit_author: base16-project-bot <base16themeproject@proton.me> - |