ci/cd - fix wrong condition for container-build workflow

This commit is contained in:
florian 2023-04-29 16:53:33 +02:00
parent ef1897de82
commit 6784bd6914
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Login to private repository
if: inputs.RELEASE == 'staging'
if: inputs.PUSH == true
uses: docker/login-action@v2
with:
registry: ${{ secrets.PRIVATE_REGISTRY }}

View File

@ -219,7 +219,7 @@ jobs:
RUNS_ON: "['self-hosted', 'bw-linux']"
secrets: inherit
tests-ui:
needs: [code-security, build-ui, build-bw, build-sc]
needs: [code-security, build-bw, build-sc, build-ui]
uses: ./.github/workflows/tests-ui.yml
with:
RELEASE: staging