diff --git a/.github/workflows/deploy-hato-bot.yml b/.github/workflows/deploy-hato-bot.yml index 9e6d0ed884..267eeb9fba 100644 --- a/.github/workflows/deploy-hato-bot.yml +++ b/.github/workflows/deploy-hato-bot.yml @@ -81,32 +81,32 @@ jobs: - run: echo 'TAG_NAME=${{ github.event.release.tag_name }}' >> "$GITHUB_ENV" if: ${{ github.event_name == 'release' }} - parallel: - - name: Build and push (build) - uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 - env: - DOCKER_CONTENT_TRUST: 1 - with: - push: true - files: build.docker-compose.yml - source: . - - name: Build and push (main) - uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 - env: - DOCKER_CONTENT_TRUST: 1 - with: - push: true - files: docker-compose.yml - source: . - targets: postgres,hato-bot - - name: Build and push (dev) - uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 - env: - DOCKER_CONTENT_TRUST: 1 - with: - push: true - files: docker-compose.yml,dev.base.docker-compose.yml - source: . - targets: hato-bot + - name: Build and push (build) + uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 + env: + DOCKER_CONTENT_TRUST: 1 + with: + push: true + files: build.docker-compose.yml + source: . + - name: Build and push (main) + uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 + env: + DOCKER_CONTENT_TRUST: 1 + with: + push: true + files: docker-compose.yml + source: . + targets: postgres,hato-bot + - name: Build and push (dev) + uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0 + env: + DOCKER_CONTENT_TRUST: 1 + with: + push: true + files: docker-compose.yml,dev.base.docker-compose.yml + source: . + targets: hato-bot - run: echo 'TAG_NAME=latest' >> "$GITHUB_ENV" if: ${{ github.event_name == 'release' }} - name: Build and push (build) (latest)