From 941a375b15d15035dbf16eeb463fce2c268aa03f Mon Sep 17 00:00:00 2001 From: Dima YaFlay <93622229+YaFlay@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:29:50 +0300 Subject: [PATCH] Update docker-image.yml --- .github/workflows/docker-image.yml | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 7a1389a..0ad5a6f 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -15,4 +15,30 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build the Docker image - run: docker login -u ${{ secrets.USERNAME }} -p ${{ secrets.PASSWORD }} && docker build . --file Dockerfile --tag ghcr.io/yaflay/yaflay_ru:$(date +%s) && docker push yaflay_ru:$(date +%s) + run: docker build . --file Dockerfile --tag ghcr.io/yaflay/yaflay_ru:$(date +%s) + push_to_registry: + name: Push Docker image to Docker Hub + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Log in to Docker Hub + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + with: + username: ${{ secrets.USERNAME }} + password: ${{ secrets.PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: yaflay/yaflay.ru + - name: Build and push Docker image + uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + with: + context: . + file: ./Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}