From 56059db7de8ba682f33279a14156d34aa3b45170 Mon Sep 17 00:00:00 2001 From: Piotr Siuszko Date: Wed, 27 Mar 2024 14:06:46 +0100 Subject: [PATCH] Just call the command --- .github/workflows/client_build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/client_build.yml b/.github/workflows/client_build.yml index 6715c113..3a3fdabb 100644 --- a/.github/workflows/client_build.yml +++ b/.github/workflows/client_build.yml @@ -26,8 +26,5 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build - uses: docker/build-push-action@v5 - with: - push: false - tags: beamable/unrealclient:latest \ No newline at end of file + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) \ No newline at end of file