Skip to content

Commit

Permalink
MAN-227 - fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
achimber-moj committed Dec 20, 2024
1 parent d0b3dd8 commit c24b96e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/actions/build_multiplatform_docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ inputs:
HMPPS_QUAYIO_TOKEN:
description: Docker registry token
required: false
SENTRY_AUTH_TOKEN:
description: Docker registry token
required: true

runs:
using: "composite"
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ on:
required: false
HMPPS_QUAYIO_TOKEN:
required: false
SENTRY_AUTH_TOKEN:
required: true

outputs:
app_version:
Expand Down Expand Up @@ -64,5 +66,22 @@ jobs:
additional_docker_tag: ${{ secrets.SENTRY_AUTH_TOKEN }}
push: ${{ inputs.push }}
app_version: ${{ steps.app_version.outputs.version }}
# - uses: docker/build-push-action@v6
# with:
# cache-from: type=gha
# platforms: linux/amd64,linux/arm64
# cache-to: type=gha,mode=max
# context: .
# push: ${{ inputs.push }}
# secret-envs: |
# "sentry=SENTRY_AUTH_TOKEN"
# provenance: false
# build-args: |
# "BUILD_NUMBER=${{ steps.app_version.outputs.version }}
# "GIT_REF=${{ github.sha }}"
# "GIT_BRANCH=${{ github.ref_name }}"
# tags: |
# ${{ inputs.docker_registry}}/${{ inputs.registry_org }}/${{ github.event.repository.name }}:latest
# ${{ inputs.docker_registry}}/${{ inputs.registry_org }}/${{ github.event.repository.name }}:${{ steps.app_version.outputs.version }}


0 comments on commit c24b96e

Please sign in to comment.