forked from Skynet/actions
Feat. Adding docker_nix action
This commit is contained in:
parent
90efe0241c
commit
d085245659
1 changed files with 11 additions and 0 deletions
11
docker_nix/action.yml
Normal file
11
docker_nix/action.yml
Normal 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
|
Loading…
Reference in a new issue