diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b96fa044..960ce0ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,6 +123,12 @@ jobs: tags: ${{ join(matrix.tags) }} platforms: ${{ github.ref == 'refs/heads/master' && join(matrix.platforms) || 'linux/amd64' }} + - name: Pull image for master branch + if: github.ref == 'refs/heads/master' + run: | + echo "Pulling image for master branch" + docker pull ${{ matrix.tags[0] }} + - name: Current image report id: manifest run: | diff --git a/.github/workflows/cleanup-old-docker-images.yml b/.github/workflows/cleanup-old-docker-images.yml index 3e55c214..a2d680a1 100644 --- a/.github/workflows/cleanup-old-docker-images.yml +++ b/.github/workflows/cleanup-old-docker-images.yml @@ -99,5 +99,5 @@ jobs: ] } env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CE_RELEASE_WEBHOOK }} SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK