chore(workflows): don't use cartesian product of docker files and image names.
Some checks failed
Build and Publish Docker Images / setup (push) Failing after 42s
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been skipped
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been skipped
Some checks failed
Build and Publish Docker Images / setup (push) Failing after 42s
Build and Publish Docker Images / build (server.Dockerfile, ${{ vars.IMAGE_NAME_SERVER }}) (push) Has been skipped
Build and Publish Docker Images / build (worker.Dockerfile, ${{ vars.IMAGE_NAME_WORKER }}) (push) Has been skipped
This commit is contained in:
parent
68f6e85c78
commit
62fd20faa6
1 changed files with 5 additions and 2 deletions
|
@ -39,8 +39,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
dockerfile: ["worker.Dockerfile", "server.Dockerfile"]
|
||||
image-name: ["${{ vars.IMAGE_NAME_WORKER }}", "${{ vars.IMAGE_NAME_SERVER }}"]
|
||||
include:
|
||||
- dockerfile: worker.Dockerfile
|
||||
image-name: ${{ vars.IMAGE_NAME_WORKER }}
|
||||
- dockerfile: server.Dockerfile
|
||||
image-name: ${{ vars.IMAGE_NAME_SERVER }}
|
||||
steps:
|
||||
- name: Build and Push Image
|
||||
uses: docker/build-push-action@v6
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue