Skip to content

Commit

Permalink
fix: remove if statement that was blocking release
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 31, 2024
1 parent 2dec872 commit 486ad1a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/release.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ on:

jobs:
publish-runner:
if: ${{ (github.event_name != 'workflow_dispatch' || inputs.doc_deploy) && (github.ref_name == 'master') }}
name: Kuzzle runner Docker image
runs-on: ubuntu-24.04
strategy:
Expand Down Expand Up @@ -48,7 +47,6 @@ jobs:
tags: kuzzleio/kuzzle-runner:${{ matrix.node-version }}

publish-plugin-dev:
if: ${{ (github.event_name != 'workflow_dispatch' || inputs.doc_deploy) && (github.ref_name == 'master') }}
name: Kuzzle plugin-dev Docker image
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -88,7 +86,6 @@ jobs:
tags: kuzzleio/plugin-dev:${{ steps.get-version.outputs.major-version }},kuzzleio/plugin-dev:latest,kuzzleio/plugin-dev:${{ steps.get-version.outputs.version }}

publish-kuzzle-core:
if: ${{ (github.event_name != 'workflow_dispatch' || inputs.doc_deploy) && (github.ref_name == 'master') }}
name: Kuzzle core Docker image
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -128,7 +125,6 @@ jobs:
tags: kuzzleio/kuzzle:${{ steps.get-version.outputs.major-version }},kuzzleio/kuzzle:latest,kuzzleio/kuzzle:${{ steps.get-version.outputs.version }}

publish-core-dev:
if: ${{ (github.event_name != 'workflow_dispatch' || inputs.doc_deploy) && (github.ref_name == 'master') }}
name: Kuzzle core-dev Docker image
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -161,7 +157,6 @@ jobs:
tags: kuzzleio/core-dev:2,kuzzleio/core-dev:latest

publish-elasticsearch:
if: ${{ (github.event_name != 'workflow_dispatch' || inputs.doc_deploy) && (github.ref_name == 'master') }}
name: Elasticsearch Docker image
runs-on: ubuntu-24.04
steps:
Expand Down

0 comments on commit 486ad1a

Please sign in to comment.