Compare commits

...

2 commits

Author SHA1 Message Date
Tom Hubrecht
f4fe84075c fix(workflows): Use raw values
All checks were successful
build configuration / build_web01 (push) Successful in 45s
build configuration / build_compute01 (push) Successful in 1m8s
build configuration / build_storage01 (push) Successful in 1m10s
npins update / npins_update (push) Successful in 1m14s
ds-fr update / npins_update (push) Successful in 2m30s
2023-12-22 18:25:30 +01:00
Tom Hubrecht
9b49bd2721 feat(dgn-runners): Add curl and link usr/bin/env to bin/env for compatibility with nixos 2023-12-22 18:23:48 +01:00
2 changed files with 7 additions and 2 deletions

View file

@ -2,7 +2,7 @@ name: ds-fr update
on:
schedule:
# Run at 8 o'clock every day
- cron: "0 8 * * *"
- cron: "26 18 * * *"
jobs:
npins_update:
@ -17,7 +17,7 @@ jobs:
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/demarches-simplifiees/demarches-simplifiees.fr/releases/latest \
| jq '.tag_name')
| jq -r '.tag_name')
# Move to the ds-fr directory
cd machines/compute01/ds-fr/package

View file

@ -62,6 +62,7 @@ in {
pkgs.bash
pkgs.colmena
pkgs.coreutils
pkgs.curl
pkgs.findutils
pkgs.gawk
pkgs.git
@ -173,6 +174,10 @@ in {
rpc: files
NSSWITCH
# Link usr/bin/env
mkdir -p usr/bin
ln -s /bin/env usr/bin/env
# list the content as it will be imported into the container
tar -cv . | tar -tvf -
tar -cv . | podman import - forgejo-runner-nix