mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
ci/cd - fix wrong condition for container-build workflow
This commit is contained in:
parent
ef1897de82
commit
6784bd6914
2 changed files with 2 additions and 2 deletions
2
.github/workflows/container-build.yml
vendored
2
.github/workflows/container-build.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/staging.yml
vendored
2
.github/workflows/staging.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue