mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-10-03 07:23:32 +00:00
CI: build & cache
This commit is contained in:
parent
58064e5e72
commit
0eef5abf3f
3 changed files with 78 additions and 0 deletions
31
.github/workflows/update-flake.yml
vendored
Normal file
31
.github/workflows/update-flake.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue