1
0
Fork 0
nix-overlay/.forgejo/workflows/update-flake.yml

36 lines
1.1 KiB
YAML
Raw Normal View History

2023-09-16 15:43:50 +00:00
name: Update Flake
on:
schedule:
- cron: '0 2 * * *'
jobs:
update-flake:
2023-12-08 19:26:48 +00:00
runs-on: nix-amd64
2023-09-16 15:43:50 +00:00
permissions:
contents: write
steps:
2023-12-03 12:36:06 +00:00
- uses: actions/checkout@v4
with:
ref: master
2023-09-16 15:43:50 +00:00
- run: nix flake update
2023-12-16 18:44:27 +00:00
- name: Update packages
run: |
nix-update --flake anonymous-overflow
nix-update --flake --version development bulk-downloader-for-reddit
2024-07-26 15:41:48 +00:00
nix-update --flake controld
2024-04-28 21:58:46 +00:00
nix-update --flake discord-downloader-go
2023-12-16 18:44:27 +00:00
nix-update --flake q
2024-05-30 16:25:06 +00:00
nix-update --flake redlib
2023-12-20 11:54:20 +00:00
env NIX_PATH=nixpkgs=$(nix flake metadata github:nixos/nixpkgs/nixos-unstable-small --json | jq -r .path) nix-shell ./packages/tabnine/update.sh
2024-02-04 21:45:11 +00:00
nix-update --flake tg-archive
2023-12-16 18:44:27 +00:00
nix-update --flake vuetorrent
2023-11-29 11:13:59 +00:00
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
2023-09-16 15:43:50 +00:00
with:
commit_message: "[automation] Update flake"
2023-11-29 11:13:59 +00:00
commit_user_name: Actions Bot
commit_user_email: daniel+actions-bot@kempkens.io
commit_author: Actions Bot <daniel+actions-bot@kempkens.io>