From 32778e0d7512d82ab0b4932c98ad69931bda6e87 Mon Sep 17 00:00:00 2001 From: Timur Zununbekov Date: Thu, 15 Feb 2024 14:10:18 +0600 Subject: [PATCH] Run basic e2e --- .github/workflows/build-and-release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index cbea5e098a..16b8688917 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -50,6 +50,12 @@ jobs: file: ./coverage.txt token: ${{ secrets.CODECOV_TOKEN }} + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: E2E basic test run: | go run mage.go -v TestE2EBasic @@ -62,8 +68,3 @@ jobs: # runs-on: ubuntu-latest # needs: publish-images - # - name: Login to Docker Hub - # uses: docker/login-action@v3 - # with: - # username: ${{ secrets.DOCKERHUB_USERNAME }} - # password: ${{ secrets.DOCKERHUB_TOKEN }}