Skip to content

Commit

Permalink
Merge pull request #11 from vivekashok1221/automatic-build
Browse files Browse the repository at this point in the history
CD: Publish docker image.
  • Loading branch information
vivekashok1221 committed Aug 15, 2023
2 parents 9226d4c + ad0bcca commit 8d920c9
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and publish Docker image

on:
workflow_call:
inputs:
REGISTRY:
type: string
required: true
IMAGE_NAME:
type: string
required: true

jobs:
build-and-push-image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to GHCR
uses: docker/login-action@v2
with:
registry: ${{ inputs.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract tags and labels for Docker image
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ inputs.REGISTRY }}/${{ inputs.IMAGE_NAME }}
flavor: latest=true
tags: type=sha, priority=1, prefix=
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI / CD

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build-and-push:
permissions:
contents: read
packages: write
uses: ./.github/workflows/build-and-publish.yml
with:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

0 comments on commit 8d920c9

Please sign in to comment.