-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #552 from diffblue/ebmc-packages-fixup10
Fix ebmc release workflow
- Loading branch information
Showing
1 changed file
with
15 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,31 +213,27 @@ jobs: | |
needs: [ubuntu-22_04-package, centos8-package, get-version-information, perform-draft-release] | ||
steps: | ||
- name: Publish release | ||
uses: tubone24/[email protected] | ||
env: | ||
EBMC_VERSION: ${{ needs.get-version-information.outputs.version }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ebmc-${{ env.EBMC_VERSION }} | ||
release_name: ebmc-${{ env.EBMC_VERSION }} | ||
id: ${{ needs.perform-draft-release.outputs.id }} | ||
draft: false | ||
prerelease: false | ||
body: | | ||
This is EBMC version ${{ env.EBMC_VERSION }}. | ||
run: | | ||
cat > body << EOM | ||
This is EBMC version ${{ env.EBMC_VERSION }}. | ||
## Ubuntu | ||
## Ubuntu | ||
On Ubuntu, install EBMC by downloading the *.deb package below for your version of Ubuntu and install with | ||
On Ubuntu, install EBMC by downloading the *.deb package below for your version of Ubuntu and install with | ||
```sh | ||
dpkg -i ${{ needs.ubuntu-22_04-package.outputs.deb_package_name }} | ||
``` | ||
```sh | ||
dpkg -i ${{ needs.ubuntu-22_04-package.outputs.deb_package_name }} | ||
``` | ||
## CentOS | ||
## CentOS | ||
On CentOS, install EBMC by downloading the *.rpm package below for your version of CentOS and install with | ||
On CentOS, install EBMC by downloading the *.rpm package below for your version of CentOS and install with | ||
```sh | ||
rpm -i ${{ needs.centos8-package.outputs.rpm_package_name }} | ||
``` | ||
```sh | ||
rpm -i ${{ needs.centos8-package.outputs.rpm_package_name }} | ||
``` | ||
EOM | ||
gh release edit ebmc-${{ env.EBMC_VERSION }} --draft=false --notes-file body |