Skip to content

Commit

Permalink
CID-3008: Publish Image to OSS Store Docker registry
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedlajmileanix committed Oct 7, 2024
1 parent 4b170e0 commit 90f505a
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 147 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/publish-package-to-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Publish Package to ghcr.io

on:
release:
types: [published]
workflow_dispatch:

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

jobs:
build-and-push-image:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write
attestations: write
id-token: write

environment: ghcr:leanix-github-agent

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v3.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5.5.1
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: push
uses: docker/build-push-action@v5.3.0
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
48 changes: 0 additions & 48 deletions .github/workflows/release-dev-docker-image.yml

This file was deleted.

99 changes: 0 additions & 99 deletions .github/workflows/release-docker-image.yml

This file was deleted.

0 comments on commit 90f505a

Please sign in to comment.