forked from DGNum/infrastructure
fix(workflows): Try again
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
|
||||
on:
|
||||
schedule:
|
||||
# Run at 16 o'clock every monday
|
||||
- cron: "0 16 * * 1"
|
||||
# Run at 11 o'clock every day
|
||||
- cron: "0 11 * * *"
|
||||
|
||||
jobs:
|
||||
npins_update:
|
||||
runs-on: debian-latest
|
||||
steps:
|
||||
- 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
|
||||
with:
|
||||
|
@ -17,6 +17,10 @@ jobs:
|
|||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install npins and tea
|
||||
run: |
|
||||
nix-env -iA npins tea
|
||||
|
||||
- name: Update dependencies
|
||||
run: |
|
||||
npins update
|
||||
|
|
Loading…
Reference in a new issue