Skip to content

as a notifi

as a notifi #23

Workflow file for this run

name: Docker Image Publish
on:
push:
branches:
- main
env:
IMAGE_NAME: zobaidulkazihub/purrrescue
jobs:
push_to_registry:
name: Push Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo from GitHub
uses: actions/checkout@v4
- name: Log in to Docker Hub using Docker CLI
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract Meta Data Information
id: meta
uses: docker/metadata-action@v5
with:
images: zobaidulkazihub/purrrescue
- name: Build and push Docker image to Docker Hub
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: success
run: echo "Success" && exit 0