From 4d7feb526d29fded2882172bc8d1f5d6c0a3d627 Mon Sep 17 00:00:00 2001 From: cozyGalvinism Date: Mon, 25 Mar 2024 16:10:05 +0100 Subject: [PATCH] Use more explicit matrix --- .github/workflows/rust-dind.yml | 12 ++++++------ .github/workflows/rust.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/rust-dind.yml b/.github/workflows/rust-dind.yml index f24e928..1a5e3b8 100644 --- a/.github/workflows/rust-dind.yml +++ b/.github/workflows/rust-dind.yml @@ -1,4 +1,4 @@ -name: Build and publish Docker images +name: Build and publish Docker images (Rust DinD) # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by @@ -34,14 +34,14 @@ jobs: matrix: version: - stable - host: - - 'x86_64-unknown-linux-gnu' - - 'x86_64-pc-windows-gnu' + - nightly include: - - packages: '' - - label: 'vanilla' + - host: 'x86_64-unknown-linux-gnu' + packages: '' + label: 'vanilla' - host: 'x86_64-pc-windows-gnu' packages: 'gcc-mingw-w64-x86-64' + label: 'vanilla' - host: 'x86_64-unknown-linux-gnu' packages: 'libpq-dev' label: 'postgres' diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 48928f3..ea207fa 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,4 +1,4 @@ -name: Build and publish Docker images +name: Build and publish Docker images (Rust) # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by @@ -33,14 +33,14 @@ jobs: matrix: version: - stable - host: - - 'x86_64-unknown-linux-gnu' - - 'x86_64-pc-windows-gnu' + - nightly include: - - packages: '' - - label: 'vanilla' + - host: 'x86_64-unknown-linux-gnu' + packages: '' + label: 'vanilla' - host: 'x86_64-pc-windows-gnu' packages: 'gcc-mingw-w64-x86-64' + label: 'vanilla' - host: 'x86_64-unknown-linux-gnu' packages: 'libpq-dev' label: 'postgres'