Skip to content

Commit 59f5812

Browse files
committed
Simplify and rename workflow jobs; consolidate QEMU setup and Podman version steps.
1 parent 733cf58 commit 59f5812

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/container.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v6
40-
- name: Set up QEMU
41-
run: |
40+
- run: |
4241
sudo apt-get update
4342
sudo apt-get install -y qemu-user-static
44-
- name: Verify Podman
45-
run: podman --version
43+
- run: podman --version
4644
- uses: actions/download-artifact@v4
4745
with:
4846
name: native-binary-amd64

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,16 @@ jobs:
112112
path: op/standalone/target/*-runner
113113
retention-days: 1
114114

115-
hal-op-image:
115+
build-image:
116116
needs: build-native
117117
runs-on: ubuntu-latest
118118
steps:
119119
- id: get-version
120120
uses: battila7/get-version-action@v2.3.0
121121
- uses: actions/checkout@v6
122+
- run: |
123+
sudo apt-get update
124+
sudo apt-get install -y qemu-user-static
122125
- run: podman --version
123126
- uses: actions/download-artifact@v4
124127
with:

0 commit comments

Comments
 (0)