mirror of https://github.com/containers/podman.git
Merge pull request #10183 from cevich/fix_multi_arch_syntax
Fix multi-arch image workflow typo
This commit is contained in:
commit
697ec8f6f0
|
|
@ -62,7 +62,7 @@ jobs:
|
||||||
# Simple verification that stable images work, and
|
# Simple verification that stable images work, and
|
||||||
# also grab version number use in forming the FQIN.
|
# also grab version number use in forming the FQIN.
|
||||||
- name: amd64 container sniff test
|
- name: amd64 container sniff test
|
||||||
if: matrix.source = 'stable'
|
if: matrix.source == 'stable'
|
||||||
id: sniff_test
|
id: sniff_test
|
||||||
run: |
|
run: |
|
||||||
VERSION_OUTPUT="$(docker run localhost:5000/podman/${{ matrix.source }} \
|
VERSION_OUTPUT="$(docker run localhost:5000/podman/${{ matrix.source }} \
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ filtered_changes=$(git diff --name-status $base $head |
|
||||||
fgrep -vx go.mod |
|
fgrep -vx go.mod |
|
||||||
fgrep -vx go.sum |
|
fgrep -vx go.sum |
|
||||||
egrep -v '^[^/]+\.md$' |
|
egrep -v '^[^/]+\.md$' |
|
||||||
|
egrep -v '^.github' |
|
||||||
egrep -v '^contrib/' |
|
egrep -v '^contrib/' |
|
||||||
egrep -v '^docs/' |
|
egrep -v '^docs/' |
|
||||||
egrep -v '^hack/' |
|
egrep -v '^hack/' |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue