diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e10b172..b9e5ecb3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 325ea953..9608c3ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 \