try ci
Some checks failed
Build and Push Docker Images / detect-changes (push) Failing after 10s
Build and Push Docker Images / build (push) Has been skipped

This commit is contained in:
Philipp Hofer 2025-04-06 13:20:16 +02:00
parent 334b2fffc7
commit e9572c86e2

View File

@ -10,6 +10,7 @@ on:
jobs: jobs:
detect-changes: detect-changes:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: git.hofer.link/philipp/ci-images:rust-latest
outputs: outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }} matrix: ${{ steps.set-matrix.outputs.matrix }}
steps: steps:
@ -28,6 +29,7 @@ jobs:
needs: detect-changes needs: detect-changes
if: ${{ needs.detect-changes.outputs.matrix != '[]' && needs.detect-changes.outputs.matrix != '' }} if: ${{ needs.detect-changes.outputs.matrix != '[]' && needs.detect-changes.outputs.matrix != '' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: git.hofer.link/philipp/ci-images:rust-latest
strategy: strategy:
matrix: matrix:
image_dir: ${{ fromJson(needs.detect-changes.outputs.matrix) }} image_dir: ${{ fromJson(needs.detect-changes.outputs.matrix) }}