From d085245659c11dc915a764398c730a5633703c0f Mon Sep 17 00:00:00 2001 From: Eoghan Conlon Date: Mon, 30 Sep 2024 21:07:46 +0100 Subject: [PATCH] Feat. Adding docker_nix action --- docker_nix/action.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker_nix/action.yml diff --git a/docker_nix/action.yml b/docker_nix/action.yml new file mode 100644 index 0000000..5a6277e --- /dev/null +++ b/docker_nix/action.yml @@ -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 \ No newline at end of file