Skip to content

Workflow file for this run

name: Build and Publish Docker Image
on:
release:
types: [created]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image with latest tag
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: uugai/data-harvesting:latest
- name: Build and push Docker image with release tag
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: uugai/data-harvesting:${{ github.ref_name }}