From 98a95edbeeeb5c0743a85c2d567bd8f14f36a8ac Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Tue, 11 Jun 2024 12:45:34 -0300 Subject: [PATCH] trigger CI Signed-off-by: Marcos Lilljedahl --- .github/workflows/ci.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ffef79b74..ffde59418 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ permissions: contents: read env: - DAGGER_VERSION: 0.11.6 + DAGGER_VERSION: 0.11.7 jobs: build: @@ -66,6 +66,18 @@ jobs: cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} version: ${{ env.DAGGER_VERSION }} + - name: Export Dagger Engine logs + run: docker logs $(docker container list --all --filter 'name=^dagger-engine-*' --format '{{.Names}}') 2> engine.log + if: always() + + - name: Upload Dagger Engine logs as artifact + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + if: always() + with: + name: "Dagger Engine logs" + path: engine.log + retention-days: 14 + commit-hooks: name: Commit hooks runs-on: ubuntu-latest