feat: upgrade impact score #209
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
name: Build and push dev images | |
on: | |
push: | |
branches: | |
- stackable | |
permissions: | |
id-token: write | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 | |
- | |
name: Login to Stackable Harbor | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
with: | |
registry: oci.stackable.tech | |
username: robot$stackable+github-action-build | |
password: ${{ secrets.HARBOR_ROBOT_STACKABLE_GITHUB_ACTION_BUILD_SECRET }} | |
- | |
name: Set up Cosign | |
uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 # tag=v3.3.0 | |
- | |
name: Set current date as env variable | |
run: echo "CREATED=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV | |
- | |
name: Build and push backend | |
id: build-and-push-backend | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0 | |
with: | |
context: . | |
file: ./docker/backend/prod/django/Dockerfile | |
push: true | |
tags: oci.stackable.tech/stackable/secobserve-backend:dev | |
build-args: | | |
CREATED=${{ env.CREATED }} | |
REVISION=${{ github.sha }} | |
VERSION=dev | |
- | |
name: Sign the published backend image | |
run: cosign sign -y oci.stackable.tech/stackable/secobserve-backend@${{ steps.build-and-push-backend.outputs.digest }} | |
- | |
name: Build and push frontend | |
id: build-and-push-frontend | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0 | |
with: | |
context: . | |
file: ./docker/frontend/prod/Dockerfile | |
push: true | |
tags: oci.stackable.tech/stackable/secobserve-frontend:dev | |
build-args: | | |
CREATED=${{ env.CREATED }} | |
REVISION=${{ github.sha }} | |
VERSION=dev | |
- | |
name: Sign the published frontend image | |
run: cosign sign -y oci.stackable.tech/stackable/secobserve-frontend@${{ steps.build-and-push-frontend.outputs.digest }} |