This repository was archived by the owner on Apr 7, 2026. It is now read-only.
update #1959
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 | |
| on: | |
| schedule: | |
| - cron: "0 8 * * *" | |
| jobs: | |
| update: | |
| name: update | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install nix | |
| uses: cachix/install-nix-action@v25 | |
| - name: Update lock file | |
| run: | | |
| git config --local user.name "github-actions" | |
| git config --local user.email "action@github.com" | |
| nix flake update --commit-lock-file | |
| git push | |
| - name: Set up cachix | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: figsoda | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Build with nix | |
| run: nix build .#{rust-templates,ymdl} |