.github: fix syntax error in workflows, missing 'with:' for params

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg
2024-02-02 09:08:44 +01:00
parent cd521ca789
commit f4f62e1c02
2 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -78,8 +78,9 @@ jobs:
contents: write
steps:
- uses: actions/download-artifact@v4
pattern: "artifact-*"
merge-multiple: true
with:
pattern: "artifact-*"
merge-multiple: true
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
+3 -2
View File
@@ -98,8 +98,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
pattern: "artifact-*"
merge-multiple: true
with:
pattern: "artifact-*"
merge-multiple: true
- name: Extract ChangeLog entry ...
run: |
awk '/^-----*$/{if (x == 1) exit; x=1;next}x' doc/ChangeLog.md \