Skip to content

Commit 2a3a30f

Browse files
authored
Merge pull request #552 from diffblue/ebmc-packages-fixup10
Fix ebmc release workflow
2 parents 563a06e + 2aa28c6 commit 2a3a30f

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

.github/workflows/ebmc-release.yaml

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -213,31 +213,27 @@ jobs:
213213
needs: [ubuntu-22_04-package, centos8-package, get-version-information, perform-draft-release]
214214
steps:
215215
- name: Publish release
216-
uses: tubone24/update_release@v1.0
217216
env:
218217
EBMC_VERSION: ${{ needs.get-version-information.outputs.version }}
219218
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
220-
with:
221-
tag_name: ebmc-${{ env.EBMC_VERSION }}
222-
release_name: ebmc-${{ env.EBMC_VERSION }}
223-
id: ${{ needs.perform-draft-release.outputs.id }}
224-
draft: false
225-
prerelease: false
226-
body: |
227-
This is EBMC version ${{ env.EBMC_VERSION }}.
219+
run: |
220+
cat > body << EOM
221+
This is EBMC version ${{ env.EBMC_VERSION }}.
228222
229-
## Ubuntu
223+
## Ubuntu
230224
231-
On Ubuntu, install EBMC by downloading the *.deb package below for your version of Ubuntu and install with
225+
On Ubuntu, install EBMC by downloading the *.deb package below for your version of Ubuntu and install with
232226
233-
```sh
234-
dpkg -i ${{ needs.ubuntu-22_04-package.outputs.deb_package_name }}
235-
```
227+
```sh
228+
dpkg -i ${{ needs.ubuntu-22_04-package.outputs.deb_package_name }}
229+
```
236230
237-
## CentOS
231+
## CentOS
238232
239-
On CentOS, install EBMC by downloading the *.rpm package below for your version of CentOS and install with
233+
On CentOS, install EBMC by downloading the *.rpm package below for your version of CentOS and install with
240234
241-
```sh
242-
rpm -i ${{ needs.centos8-package.outputs.rpm_package_name }}
243-
```
235+
```sh
236+
rpm -i ${{ needs.centos8-package.outputs.rpm_package_name }}
237+
```
238+
EOM
239+
gh release edit ebmc-${{ env.EBMC_VERSION }} --draft=false --notes-file body

0 commit comments

Comments
 (0)