Merge pull request #10183 from cevich/fix_multi_arch_syntax

Fix multi-arch image workflow typo
This commit is contained in:
OpenShift Merge Robot 2021-05-01 22:32:30 +02:00 committed by GitHub
commit 697ec8f6f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ jobs:
# Simple verification that stable images work, and
# also grab version number use in forming the FQIN.
- name: amd64 container sniff test
if: matrix.source = 'stable'
if: matrix.source == 'stable'
id: sniff_test
run: |
VERSION_OUTPUT="$(docker run localhost:5000/podman/${{ matrix.source }} \

View File

@ -39,6 +39,7 @@ filtered_changes=$(git diff --name-status $base $head |
fgrep -vx go.mod |
fgrep -vx go.sum |
egrep -v '^[^/]+\.md$' |
egrep -v '^.github' |
egrep -v '^contrib/' |
egrep -v '^docs/' |
egrep -v '^hack/' |