Skip to content

Update packages

Update packages #193

Workflow file for this run

name: Update
on:
schedule:
- cron: '0 0 * * *' # daily
jobs:
update:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- nix run nixpkgs#npins update
- pkgs/faf-client/update.sh
- pkgs/faf-client/update-src.sh
- pkgs/osu-lazer-bin/update.sh
- pkgs/osu-stable/update.sh
- pkgs/wine/update-wine-ge.sh
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
experimental-features = nix-command flakes
- uses: cachix/cachix-action@v12
with:
name: nix-gaming
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: ${{ matrix.command }}
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update inputs"
build:
needs: update
uses: ./.github/workflows/build.yml