Skip to content

Commit f3bbdf4

Browse files
authored
Add installation step for Podman in build workflow
1 parent b64e52b commit f3bbdf4

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
python -m venv .venv
2525
source .venv/bin/activate
2626
pip install -e .
27-
27+
- name: Install podman
28+
run: |
29+
sudo apt-get update -y
30+
sudo apt-get install -y podman
2831
- name: Build go
2932
run: |
3033
cd bits
@@ -46,4 +49,4 @@ jobs:
4649
with:
4750
name: build-logs-go
4851
path: bits/sw/BUILD/go/latest/logs
49-
retention-days: 7
52+
retention-days: 7

0 commit comments

Comments
 (0)