Skip to content

Commit 5fa8cff

Browse files
committed
ci: fix docker-release workflow syntax (process substitution)
1 parent 6abf66e commit 5fa8cff

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/docker-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,5 @@ docker-compose up -d
9090
- Automatically built for linux/amd64, linux/arm64, linux/arm/v7
9191
"
9292
93-
gh release edit "$TAG" --notes-file <(echo "$NOTES")
93+
echo "$NOTES" > /tmp/docker-notes.txt
94+
gh release edit "$TAG" --notes-file /tmp/docker-notes.txt

0 commit comments

Comments
 (0)