Skip to content

Commit

Permalink
feat: Introduce Stage to Build and Push Docker Image
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaushl2208 committed Jun 7, 2024
1 parent 3bbf2d8 commit e7dcdb2
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# SPDX-FileCopyrightText: 2024 Kaushlendra Pratap <[email protected]>
# SPDX-License-Identifier: GPL-2.0-only

name: Build and Push Docker Image

on:
push:
branches:
- main

jobs:
docker-build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push main image
uses: docker/build-push-action@v4
with:
push: true
tags: fossology/licensedb:latest
context: .
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Log out from Docker Hub
run: docker logout

0 comments on commit e7dcdb2

Please sign in to comment.