CI: build & cache

This commit is contained in:
raf 2023-11-03 11:30:38 +03:00
commit 0eef5abf3f
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
3 changed files with 78 additions and 0 deletions

31
.github/workflows/update-flake.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Update flake
on:
schedule:
- cron: "0 0 * * 0" # weekly
jobs:
update:
if: github.repository == 'notashelf/nyxpkgs'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v12
with:
name: nix-gaming
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update flake"
build:
needs: update
uses: ./.github/workflows/build.yml
secrets: inherit