actions/docker_nix/action.yml

19 lines
793 B
YAML
Raw Normal View History

2024-09-30 20:07:46 +00:00
name: 'Get image ready to run nix jobs'
description: 'Update apt repositories and installing sudo'
runs:
using: 'composite'
steps:
- name: 'Get image ready to run nix jobs'
shell: bash
run: |
apt update
apt upgrade
apt install sudo
- uses: https://github.com/cachix/install-nix-action@v29
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
trusted-public-keys = skynet-cache:zMFLzcRZPhUpjXUy8SF8Cf7KGAZwo98SKrzeXvdWABo= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
substituters = https://nix-cache.skynet.ie/skynet-cache https://hydra.iohk.io https://cache.nixos.org/
- shell: bash
run: nix --version