diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2625c82..a95f6be 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -57,7 +57,6 @@ jobs: type=semver,pattern={{major}}.{{minor}} - name: Login to Registry - if: github.event_name != 'pull_request' uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} @@ -65,7 +64,6 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - if: github.event_name != 'pull_request' uses: docker/build-push-action@v5 with: context: . @@ -73,7 +71,6 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - name: Semantic Release - if: github.event_name != 'pull_request' uses: cycjimmy/semantic-release-action@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file