devops: another attempt to fix docker workflow

This commit is contained in:
Andrey Lushnikov 2022-01-15 05:11:35 +03:00
parent cfb86a74fa
commit 1b0c350d0a

View File

@ -35,6 +35,6 @@ jobs:
- run: npm run build - run: npm run build
- run: npx playwright install-deps - run: npx playwright install-deps
- run: ./utils/docker/publish_docker.sh stable - run: ./utils/docker/publish_docker.sh stable
if: (github.event_name != 'workflow_dispatch' && !github.event.release.prerelease) || (github.event_name == 'workflow_dispatch' && github.event.inputs.is_release) if: (github.event_name != 'workflow_dispatch' && !github.event.release.prerelease) || (github.event_name == 'workflow_dispatch' && github.event.inputs.is_release == 'true')
- run: ./utils/docker/publish_docker.sh canary - run: ./utils/docker/publish_docker.sh canary
if: (github.event_name != 'workflow_dispatch' && github.event.release.prerelease) || (github.event_name == 'workflow_dispatch' && !github.event.inputs.is_release) if: (github.event_name != 'workflow_dispatch' && github.event.release.prerelease) || (github.event_name == 'workflow_dispatch' && github.event.inputs.is_release != 'true')