Skip to content

Docker Image CI

Docker Image CI #26

Workflow file for this run

name: Docker Image CI
on:
workflow_run:
workflows: [Tests]
types: [completed]
branches: [main]
jobs:
publish-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: mirzaim/ipcs:latest