Skip to content

Update docker-image.yml #13

Update docker-image.yml

Update docker-image.yml #13

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag dualhgt:latest # $(date +%s)
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Push the Docker image
run: |
docker push dualhgt:latest
docker push dualhgt:$(date +%s)
docker push dualhgt:${{ github.sha }}