From f1234702f541721a981af9582a7c27916153c1e3 Mon Sep 17 00:00:00 2001 From: iamthen0ise Date: Tue, 22 Oct 2024 13:13:59 +0300 Subject: [PATCH] Fix error in docker workflow step (#23) --- .github/workflows/go_ext.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/go_ext.yml b/.github/workflows/go_ext.yml index 6120901..ccfacd4 100644 --- a/.github/workflows/go_ext.yml +++ b/.github/workflows/go_ext.yml @@ -32,5 +32,12 @@ jobs: - name: Format run: test -z $(gofmt -l .) +- name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: ./extension/tgbot + push: true + tags: iamthen0ise/w2r-tgbot:latest + if: github.ref == 'refs/heads/master' - name: Build run: go build -v ./...