1
Fork 0

Disable docker check manifest step

as it often returned false positives
This commit is contained in:
viktorstrate 2020-09-27 20:59:14 +02:00
parent 54bfc3d480
commit 9939818cf0
1 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ jobs:
if [ "${{ github.event_name }}" = "schedule" ]; then if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION=nightly VERSION=nightly
fi fi
TAGS="--tag ${DOCKER_IMAGE}:${VERSION}" TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then
VERSION_MINOR=${BASH_REMATCH[1]} VERSION_MINOR=${BASH_REMATCH[1]}
@ -79,10 +79,10 @@ jobs:
run: | run: |
docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }}
- name: Docker Check Manifest # - name: Docker Check Manifest
if: always() && github.event_name != 'pull_request' # if: always() && github.event_name != 'pull_request'
run: | # run: |
docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }} # docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }}
- name: Clear - name: Clear
if: always() && github.event_name != 'pull_request' if: always() && github.event_name != 'pull_request'