Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechsromek committed Aug 20, 2024
1 parent f0c6e81 commit deb25c2
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Build and push docker image

on:
push:
branches:
- "POP-1768-retrieve-keys-from-remote-storage"
release:
types:
- 'published'
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/debug-build-and-push-branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Debug Build and push docker image for the keys and sqs/s3

on:
push:
branches:
- "POP-1768-retrieve-keys-from-remote-storage"

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
docker:
runs-on:
labels: ubuntu-22.04-64core
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit deb25c2

Please sign in to comment.