Skip to content

Commit

Permalink
feat: auto-update flake weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardotglobal committed Oct 22, 2024
1 parent e630b5a commit 7277f71
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/update-nix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Update Flake Packages"

on:
workflow_dispatch:
schedule:
- cron: "0 10 * * 0" # https://crontab.guru/#0_10_*_*_0

jobs:
updateFlakePackages:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Nix
uses: cachix/install-nix-action@v20

- name: Update flake packages
uses: selfuryon/nix-update-action@v1

0 comments on commit 7277f71

Please sign in to comment.