diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 49fe6b1122..04632d7b69 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -50,7 +50,16 @@ jobs: file: ./coverage.txt token: ${{ secrets.CODECOV_TOKEN }} - # - name: E2E basic test + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + + - name: E2E basic test + run: | + go run mage.go -v TestE2EBasic + # - name: E2E NAT test # create-release: @@ -59,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 }}