This commit is contained in:
2025-04-25 22:17:58 +02:00
parent d484fc37b7
commit 27ae0f4c53

View File

@@ -24,11 +24,14 @@ jobs:
matrix: ${{ steps.matrix.outputs.value }} matrix: ${{ steps.matrix.outputs.value }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: | - name: create matrix
id: matrix
run: |
cd ${{ github.workspace }} cd ${{ github.workspace }}
echo "<ul class=posts>" > public/posts.html echo "<ul class=posts>" > public/posts.html
./compile.sh >> "$GITHUB_OUTPUT" ./compile.sh >> "$GITHUB_OUTPUT"
- run: | - name: check matrix
run: |
echo "${{ steps.matrix.outputs.value }}" echo "${{ steps.matrix.outputs.value }}"
build: build:
needs: [ setup ] needs: [ setup ]