Skip to content

Fixed minor error in CI #4

Fixed minor error in CI

Fixed minor error in CI #4

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: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build the Docker image
run: docker build . --file src/app/Dockerfile --tag luneforge:$(date +%s)
- name: Push the Docker image to Docker Hub
run: |
docker tag luneforge:$(date +%s) ${{ secrets.DOCKER_USERNAME }}/luneforge:latest
docker push ${{ secrets.DOCKER_USER }}/luneforge:latest