Skip to content

Commit

Permalink
.github: fix syntax error in workflows, missing 'with:' for params
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <[email protected]>
  • Loading branch information
troglobit committed Feb 2, 2024
1 parent cd521ca commit f4f62e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit f4f62e1

Please sign in to comment.