This commit is contained in:
2025-04-25 22:37:36 +02:00
parent e26929b2c6
commit 7aa4727fa1
2 changed files with 3 additions and 2 deletions

View File

@@ -29,7 +29,8 @@ jobs:
run: |
cd ${{ github.workspace }}
echo "<ul class=posts>" > public/posts.html
./compile.sh >> "$GITHUB_OUTPUT"
test=$(./compile.sh)
echo "::set-output name=matrix::$test"
- name: check matrix
run: |
echo "${{ steps.matrix.outputs.value }}"

View File

@@ -6,5 +6,5 @@ do
timestamp=`git log --format=%ad --date=format:'%Y-%m-%d' -- $entry`
t+="{\"dest\"=$filename,\"time\"=$timestamp},"
done
echo "value=${t%?}]"
echo "${t%?}]"