-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(MAJOR-training) (re) build latest deployed version
- Loading branch information
1 parent
b8c08eb
commit 73c2712
Showing
8 changed files
with
85 additions
and
506 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Build, Test and Push Training Servcie to GitHub Container Registry | ||
on: | ||
push: | ||
branches: [ "main", "dev", "feature/ml-training-service" ] | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
workflow_dispatch: | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
|
||
jobs: | ||
build-and-push-image: | ||
strategy: | ||
matrix: | ||
component: [ training ] | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to the Container Registry | ||
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Determine Semantic Version | ||
uses: paulhatch/semantic-version@v5.4.0 | ||
id: semantic-version | ||
with: | ||
tag_prefix: "v" | ||
major_pattern: "(MAJOR-${{ matrix.component }})" | ||
minor_pattern: "(MINOR-${{ matrix.component }})" | ||
change_path: "${{ matrix.component }}-service" | ||
version_format: "v${major}.${minor}.${patch}+${increment}" | ||
namespace: ${{ matrix.component }} | ||
|
||
- name: Build Docker Image | ||
id: docker-build | ||
uses: docker/build-push-action@v5.3.0 | ||
with: | ||
context: ./${{ matrix.component }}-service | ||
load: true | ||
file: ./${{ matrix.component }}-service/Dockerfile | ||
|
||
- name: Run Trivy Vulnerability Scanner | ||
id: scan | ||
uses: aquasecurity/trivy-action@master | ||
with: | ||
image-ref: ${{ steps.docker-build.outputs.imageid }} | ||
format: 'table' | ||
severity: HIGH,CRITICAL | ||
exit-code: 1 | ||
|
||
- name: Upload SARIF file | ||
if: ${{ steps.scan.outputs.sarif != '' }} | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: ${{ steps.scan.outputs.sarif }} | ||
|
||
- name: Extract Metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5.5.1 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.component }} | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=tag | ||
type=ref,event=pr | ||
type=sha | ||
type=raw,value=${{ steps.semantic-version.outputs.version }} | ||
- name: Push Docker Image | ||
id: docker-push | ||
uses: docker/build-push-action@v5.3.0 | ||
with: | ||
context: ./${{ matrix.component }}-service | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
Oops, something went wrong.