From bd483187c6605d7c1fe365342abee62355e83ca3 Mon Sep 17 00:00:00 2001 From: Alex Borisov <113920954+soaska@users.noreply.github.com> Date: Fri, 29 Nov 2024 00:31:15 +0300 Subject: [PATCH] if it builds, it probably works --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..40bc400 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + pull_request: +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file telegram-bot/Dockerfile --tag telegram-bot:$(date +%s) + - name: Build the Docker image + run: docker build . --file job-manager/Dockerfile --tag job-manager:$(date +%s) +