Skip to content

Commit

Permalink
Adding version for images (#205)
Browse files Browse the repository at this point in the history
* Adding version for images

Signed-off-by: Jonsy13 <vedant.shrotria@chaosnative.com>

* Added images in release workflow

Signed-off-by: Jonsy13 <vedant.shrotria@chaosnative.com>

* Fixed paths for file & context

Signed-off-by: Jonsy13 <vedant.shrotria@chaosnative.com>
  • Loading branch information
Jonsy13 authored Jan 14, 2022
1 parent 4dc85e8 commit 63d3a57
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,48 @@ jobs:
file: custom/hardened-alpine/infra/Dockerfile
platforms: linux/amd64,linux/arm64
tags: litmuschaos/infra-alpine:${{ github.event.inputs.release_tag }},litmuschaos/infra-alpine:latest

- name: Build and push k8s
uses: docker/build-push-action@v2
with:
push: true
file: custom/k8s/Dockerfile
context: custom/k8s
platforms: linux/amd64,linux/arm64
tags: litmuschaos/k8s:${{ github.event.inputs.release_tag }},litmuschaos/k8s:latest

- name: Build and push curl
uses: docker/build-push-action@v2
with:
push: true
file: custom/curl/Dockerfile
context: custom/curl
platforms: linux/amd64,linux/arm64
tags: litmuschaos/curl:${{ github.event.inputs.release_tag }},litmuschaos/curl:latest

- name: Build and push litmus-checker
uses: docker/build-push-action@v2
with:
push: true
file: custom/litmus-checker/Dockerfile
context: custom/litmus-checker
platforms: linux/amd64,linux/arm64
tags: litmuschaos/litmus-checker:${{ github.event.inputs.release_tag }},litmuschaos/litmus-checker:latest

- name: Build and push litmus-app-deployer
uses: docker/build-push-action@v2
with:
push: true
file: custom/workflow-helper/app-deployer/Dockerfile
context: custom/workflow-helper/app-deployer
platforms: linux/amd64,linux/arm64
tags: litmuschaos/litmus-app-deployer:${{ github.event.inputs.release_tag }},litmuschaos/litmus-app-deployer:latest

- name: Build and push litmus-git-app-checker
uses: docker/build-push-action@v2
with:
push: true
file: custom/workflow-helper/app-checker/Dockerfile
context: custom/workflow-helper/app-checker
platforms: linux/amd64,linux/arm64
tags: litmuschaos/litmus-git-app-checker:${{ github.event.inputs.release_tag }},litmuschaos/litmus-git-app-checker:latest

0 comments on commit 63d3a57

Please sign in to comment.