This commit is contained in:
parent
55fa43c03d
commit
e41998705e
1 changed files with 7 additions and 3 deletions
|
@ -1,15 +1,15 @@
|
||||||
name: npins update
|
name: npins update
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run at 16 o'clock every monday
|
# Run at 11 o'clock every day
|
||||||
- cron: "0 16 * * 1"
|
- cron: "0 11 * * *"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
npins_update:
|
npins_update:
|
||||||
runs-on: debian-latest
|
runs-on: debian-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install applications
|
- name: Install applications
|
||||||
run: apt-get update && apt-get install --no-install-recommends tea sudo grep
|
run: apt-get update && apt-get install sudo
|
||||||
|
|
||||||
- uses: https://github.com/cachix/install-nix-action@v22
|
- uses: https://github.com/cachix/install-nix-action@v22
|
||||||
with:
|
with:
|
||||||
|
@ -17,6 +17,10 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install npins and tea
|
||||||
|
run: |
|
||||||
|
nix-env -iA npins tea
|
||||||
|
|
||||||
- name: Update dependencies
|
- name: Update dependencies
|
||||||
run: |
|
run: |
|
||||||
npins update
|
npins update
|
||||||
|
|
Loading…
Reference in a new issue