diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 64cac39..ff72f49 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -115,24 +115,24 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and push + - name: Build and push busybox based image uses: docker/build-push-action@v3 with: context: . push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ steps.meta-busybox.outputs.tags }} + labels: ${{ steps.meta-busybox.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max + build-args: | + BASE_IMAGE=busybox:1.36-uclibc - - name: Build and push busybox based image + - name: Build and push uses: docker/build-push-action@v3 with: context: . push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta-busybox.outputs.tags }} - labels: ${{ steps.meta-busybox.outputs.labels }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max - build-args: | - BASE_IMAGE=busybox:1.36-uclibc