We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac89655 commit 49f985fCopy full SHA for 49f985f
.github/workflows/create-image.yml
@@ -7,19 +7,21 @@ on:
7
push:
8
tags:
9
- '*'
10
-
+
11
+ workflow_dispatch:
12
13
jobs:
- build-image:
14
+ build:
15
runs-on: [self-hosted, Linux]
- steps:
16
- - name: Install prerequisites
17
- run: |
18
- sudo apt-get update
19
- sudo apt-get install qemu-utils libguestfs-tools
20
- - uses: actions/checkout@v2
+ steps:
+ - uses: actions/checkout@v3
21
with:
22
submodules: 'true'
+ - name: Install prerequisites
+ run: |
23
+ sudo dnf update -y
24
+ sudo dnf install -y libguestfs-tools libguestfs-tools-c
25
26
- name: Build base image
27
run: |
0 commit comments