diff options
| author | jimvdl <jimvdlind@gmail.com> | 2023-08-24 13:05:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 13:05:33 +0200 |
| commit | a8d3ab3fb0f65f733695ed03a2869726a98cffd7 (patch) | |
| tree | f47067469bc3a0892d997a294ab15767b1e87da6 | |
| parent | ff5dc9191e15d032c8e87065c68c232c650419a8 (diff) | |
Preserve release name and body on asset upload (#1990)
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82038077..52de89ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,9 @@ jobs: tar cJf $directory.tar.xz $directory fi - - uses: ncipollo/release-action@v1 + - uses: ncipollo/release-action@v1.12.0 with: artifacts: "typst-${{ matrix.target }}.*" allowUpdates: true + omitNameDuringUpdate: true + omitBodyDuringUpdate: true |
