From 86ca060c84923ff0c497191f13c427a922e4d001 Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Wed, 10 Jul 2024 22:50:11 -0400 Subject: [PATCH] Test workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cb58ed07..8f6b1054b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: push: branches: - master + - '*' tags: - '*' pull_request: @@ -108,7 +109,6 @@ jobs: dockerize: needs: [native-image,test] runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tags/v') && github.event_name != 'release' steps: - name: Checkout uses: actions/checkout@v4 @@ -132,5 +132,5 @@ jobs: with: context: . platforms: linux/amd64,linux/arm64/v8 - push: true + push: ${{ startsWith(github.ref, 'refs/tags/v') && github.event_name != 'release' }} tags: ${{ steps.meta.outputs.tags }}