-
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.
- Loading branch information
Showing
26 changed files
with
104 additions
and
96 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release | |
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
|
||
jobs: | ||
push_to_registry: | ||
|
@@ -20,59 +20,59 @@ jobs: | |
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Push Database to Docker Hub | ||
uses: docker/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
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/build-push-action@v6.6.1 | ||
uses: docker/build-push-action@v6.7.0 | ||
with: | ||
context: components/frontend | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ictu/quality-time_frontend:${{ github.ref_name }} | ||
push: true | ||
- name: Anchore SBOM Action | ||
uses: anchore/[email protected].0 | ||
uses: anchore/[email protected].1 | ||
- name: Package and push Helm chart to Docker Hub | ||
run: | | ||
cd helm | ||
|
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ COPY public /home/frontend/public | |
COPY src /home/frontend/src | ||
COPY healthcheck.js /home/frontend | ||
COPY .env /home/frontend | ||
RUN npm install --ignore-scripts -g [email protected].1 && \ | ||
RUN npm install --ignore-scripts -g [email protected].2 && \ | ||
npm install --ignore-scripts && \ | ||
npm install --ignore-scripts -g [email protected] && \ | ||
npm run --ignore-scripts build | ||
|
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
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
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
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ RUN apk add --no-cache \ | |
RUN update-ms-fonts \ | ||
&& fc-cache -f | ||
|
||
RUN npm install --ignore-scripts -g [email protected].1 | ||
RUN npm install --ignore-scripts -g [email protected].2 | ||
|
||
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true | ||
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.