Skip to content

Commit

Permalink
fix(workflow): Kuzzle runner, now targeting the write Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 5, 2023
1 parent 55e0157 commit fe693c0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/core-dev.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
build-and-push:
name: Build and push core-dev image
name: core-dev image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./docker/images/core-dev
file: ./docker/images/core-dev/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/elasticsearch.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build-and-push:
name: Build and push elasticsearch image
name: Elasticsearch image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand All @@ -30,7 +30,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./docker/images/elasticsearch
file: ./docker/images/elasticsearch/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/kuzzle-runner.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
publish-runner:
name: Build and push image embedding Node.js
name: kuzzle-runner Node.js
runs-on: ubuntu-22.04
strategy:
matrix:
Expand All @@ -32,10 +32,10 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: ./docker/images/kuzzle
file: ./docker/images/kuzzle/Dockerfile
context: ./docker/images/kuzzle-runner
file: ./docker/images/kuzzle-runner/Dockerfile
push: true
build-args: NODE_LTS_VERSION=${{ matrix.node-version }}
platforms: ${{ env.DOCKER_PLATFORMS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
npm run build
- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/images/kuzzle/Dockerfile
Expand Down

0 comments on commit fe693c0

Please sign in to comment.