Skip to content

Commit 066570d

Browse files
committed
uses appropriate os/container
1 parent ed199ee commit 066570d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/tembo_release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@ jobs:
1212

1313
cargo_build:
1414
name: Cargo build
15-
runs-on: ubuntu-20.04
16-
container:
17-
image: quay.io/tembo/muslrust:1.71.0-stable
1815
strategy:
1916
fail-fast: false
2017
matrix:
2118
include:
2219
- target: x86_64-apple-darwin
2320
asset_name: x86_64-apple
21+
os: macos-latest
2422
- target: x86_64-unknown-linux-musl
2523
asset_name: x86_64-linux
24+
os: ubuntu-20.04
25+
container: quay.io/tembo/muslrust:1.71.0-stable
26+
runs-on: ${{ matrix.os }}
27+
container:
28+
image: ${{ matrix.container }}
2629
steps:
2730
- name: Check out the repo
2831
uses: actions/checkout@v4

0 commit comments

Comments
 (0)