gotta love the typos...
Some checks failed
Test action / Print hello world (push) Failing after 25s

This commit is contained in:
Chris Kruining 2025-09-04 12:05:12 +02:00
parent 9ea18b18d5
commit efd98d4b44
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ jobs:
run: |
nix-env -iA nixpkgs.podman
mkdir -p ~/.config/containers
echo '{ "defult": [ {"type":"insecureAcceptAnything"} ] }' > ~/.config/containers/policy.json
echo '{ "default": [ {"type":"insecureAcceptAnything"} ] }' > ~/.config/containers/policy.json
- name: Log into registry
run: |

View file

@ -3,6 +3,6 @@ FROM docker.io/nixos/nix:latest
RUN nix-env -iA nixpkgs.nodejs_24 nixpkgs.podman
RUN echo "experimental-features = nix-command flakes pipe-operators" >> /etc/nix/nix.conf
RUN echo '{ "defult": [ {"type":"insecureAcceptAnything"} ] }' >> /etc/containers/policy.json
RUN echo '{ "default": [ {"type":"insecureAcceptAnything"} ] }' >> /etc/containers/policy.json
CMD ["/bin/bash"]