diff --git a/.github/workflows/update_ci_image.yaml b/.github/workflows/update_ci_image.yaml index 8abc146ea8..115863340d 100644 --- a/.github/workflows/update_ci_image.yaml +++ b/.github/workflows/update_ci_image.yaml @@ -108,20 +108,19 @@ jobs: - name: Image digest if: steps.config.outputs.trigger == 'true' run: echo ${{ steps.docker_build.outputs.digest }} - - name: Build and push ${{ github.ref_name }} + - name: Build and push ${{ github.ref_name }}-dev if: steps.config.outputs.trigger == 'true' id: docker_build uses: docker/build-push-action@v4 with: pull: true push: true - no-cache: ${{ steps.config.outputs.no_cache }} - cache-from: type=registry,ref=ghcr.io/ros-planning/navigation2:${{ github.ref_name }} + cache-from: type=registry,ref=ghcr.io/ros-planning/navigation2:${{ github.ref_name }}-dev cache-to: type=inline - target: builder + target: tester tags: | - ghcr.io/ros-planning/navigation2:${{ github.ref_name }} - ghcr.io/ros-planning/navigation2:${{ github.ref_name }}-${{ steps.config.outputs.timestamp }} + ghcr.io/ros-planning/navigation2:${{ github.ref_name }}-dev + ghcr.io/ros-planning/navigation2:${{ github.ref_name }}-dev-${{ steps.config.outputs.timestamp }} - name: Image digest if: steps.config.outputs.trigger == 'true' run: echo ${{ steps.docker_build.outputs.digest }}