From 13117d957ade575f445747f6a0d9fe3d53832c75 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 8 Dec 2022 21:51:25 +0100 Subject: [PATCH] Another CI test --- .github/workflows/dev.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index db91c3a92..1094573e6 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -4,17 +4,16 @@ concurrency: build on: push: branches: - - master + - 'master' - 'release/*' pull_request: branches: - - master + - 'master' - 'release/*' jobs: build: runs-on: ubuntu-latest - if: github.event_name != 'pull_request' steps: - name: Checkout uses: actions/checkout@v3.1.0 @@ -29,12 +28,14 @@ jobs: uses: docker/setup-buildx-action@v2.2.1 - name: Login to Docker Hub + if: github.event_name != 'pull_request' uses: docker/login-action@v2.1.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: BUILD + if: github.event_name != 'pull_request' uses: docker/build-push-action@v3.2.0 with: push: true