Skip to content

feat(ci/cd): add setup to build and publish image on hub docker #1

feat(ci/cd): add setup to build and publish image on hub docker

feat(ci/cd): add setup to build and publish image on hub docker #1

name: Build and Publish 'nossas/ofpnd-backend' image
on:
push:
branches:
- main
- feature/**
- hotfix/**
tags:
- v*
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: nossas/ofpnd-backend
- name: Build and Push
uses: docker/build-push-action@v3
with:
context: ./
file: Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}