Skip to content

Commit

Permalink
test build
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Jan 7, 2025
1 parent 8f9c835 commit c8b468c
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,41 @@ jobs:
- name: "Set up Docker Buildx 🏗"
uses: docker/setup-buildx-action@v3

- name: "Build Docker image 🚀"
- name: "Login to GH Container Registry 🐳"
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: "Add Docker metadata 📝"
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/conda-store-ui
tags: |
type=ref,event=tag
type=ref,event=branch
type=sha
- name: "Publish Docker image 🚀"
id: push
uses: docker/build-push-action@v5
with:
context: .
target: "prod"
push: false
tags: |
${{ steps.meta.outputs.tags }}
push: true
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
with:
subject-name: ${{ env.REGISTRY }}/conda-store-ui
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true

0 comments on commit c8b468c

Please sign in to comment.