Skip to content

Update

Update #15903

Workflow file for this run

name: Update
on:
schedule:
- cron: '30 */2 * * *'
workflow_dispatch:
jobs:
shell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
with:
github_access_token: '${{ secrets.GITHUB_TOKEN }}'
- name: Cachix
uses: cachix/cachix-action@v16
with:
name: accentor
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: true
- run: nix flake update
- run: nix build -L --no-link .#devShells.$(nix eval --impure --expr "builtins.currentSystem").accentor-android
- run: nix eval --json ".#devShells.$(nix eval --impure --expr 'builtins.currentSystem').accentor-android.outPath" | sed 's/"\(.*\)"/\1/' | cachix push accentor
- uses: stefanzweifel/git-auto-commit-action@v7.1.0
with:
commit_message: "Update flake dependencies"