Feat. Adding docker_nix action

This commit is contained in:
Eoghan Conlon 2024-09-30 21:07:46 +01:00
parent 90efe0241c
commit d085245659

11
docker_nix/action.yml Normal file
View file

@ -0,0 +1,11 @@
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