From 83c3a003cdc40b7f31ce7d66b292c8653e2ce9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eirik=20Kol=C3=A5s?= Date: Mon, 9 Oct 2023 18:54:28 +0200 Subject: [PATCH] checkout submodules as well :| --- .github/workflows/docker-publish.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 9b4b9625..f3c7d9f1 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -36,9 +36,11 @@ jobs: - name: Checkout own repository uses: actions/checkout@v4 + with: + submodules: true - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - name: Extract metadata (tags, labels) for Docker id: meta @@ -66,6 +68,6 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE }}-${{ matrix.ros_distro }}:${{ steps.date.outputs.date }} labels: ${{ steps.meta.outputs.labels }} - # cache-from: type=gha - # cache-to: type=gha,mode=max - # platforms: linux/arm64,linux/amd64 \ No newline at end of file + cache-from: type=gha + cache-to: type=gha,mode=max + platforms: linux/arm64,linux/amd64 \ No newline at end of file