From 7c6199d4f16769f02fd628c516ba2a7103c09521 Mon Sep 17 00:00:00 2001 From: Eric Wyles <23637493+ericwyles@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:42:48 -0500 Subject: [PATCH] chore: exclude registry1 arm64 architecture from matrix (#97) ## Description Exclude registry flavor + arm64 architecture combination from matrix. Missed this in original pre release testing changes. ## Related Issue Relates to #84 ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) ## Checklist before merging - [x] Test, docs, adr added or updated as needed - [x] [Contributor Guide Steps](https://github.com/defenseunicorns/uds-package-mattermost/blob/main/CONTRIBUTING.md#developer-workflow) followed --- .github/workflows/tag-and-release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index 4561d1cd..0cb42200 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -30,6 +30,9 @@ jobs: matrix: flavor: [upstream, registry1] architecture: [amd64, arm64] + exclude: + - flavor: registry1 + architecture: arm64 name: Publish ${{ matrix.flavor }} ${{ matrix.architecture }} permissions: