Build #5
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: Build | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 3 * * 3" # 03:00 on Wednesday, this is beacuse we want to update 1hr after the inputs update | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
logger: pretty | |
- name: Setup cachix | |
uses: cachix/cachix-action@v13 | |
with: | |
name: everviolet | |
- name: Install whiskers | |
run: nix profile install nixpkgs#just github:everviolet/whiskers | |
- name: Build | |
run: just build | |
- name: Push changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'chore: update themes' |