-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide multi-platform builds in order to support a wider variety of …
…(Kubernetes) deployments. Closes #9025
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,45 +23,52 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: components/database | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_database:${{ github.ref_name }} | ||
push: true | ||
- name: Push Renderer to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components/renderer | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_renderer:${{ github.ref_name }} | ||
push: true | ||
- name: Push Proxy to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components/proxy | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_proxy:${{ github.ref_name }} | ||
push: true | ||
- name: Push Collector to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components | ||
file: components/collector/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_collector:${{ github.ref_name }} | ||
push: true | ||
- name: Push Notifier to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components | ||
file: components/notifier/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_notifier:${{ github.ref_name }} | ||
push: true | ||
- name: Push API-server to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components | ||
file: components/api_server/Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_api_server:${{ github.ref_name }} | ||
push: true | ||
- name: Push Frontend to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
context: components/frontend | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_frontend:${{ github.ref_name }} | ||
push: true | ||
- name: Anchore SBOM Action | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters