forked from Skynet/actions
11 lines
No EOL
275 B
YAML
11 lines
No EOL
275 B
YAML
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 |