Skip to content

[HOTFIX] Rename version tag during release. #5776

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/regular-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.DB_CI_CPROVER_ACCESS_TOKEN }}
CBMC_TAG: ${{ needs.get-version-information.outputs.version }}
CBMC_VERSION: ${{ needs.get-version-information.outputs.version }}
with:
tag_name: ${{ env.CBMC_TAG }}
release_name: ${{ env.CBMC_TAG }}
tag_name: cbmc-${{ env.CBMC_VERSION }}
release_name: cbmc-${{ env.CBMC_VERSION }}
body: |
This is CBMC version ${{ env.CBMC_TAG }}.
This is CBMC version ${{ env.CBMC_VERSION }}.

## MacOS

Expand All @@ -60,19 +60,19 @@ jobs:

```sh
# Ubuntu 18:
$ dpkg -i ubuntu-18.04-cbmc-${{ env.CBMC_TAG }}-Linux.deb
$ dpkg -i ubuntu-18.04-cbmc-${{ env.CBMC_VERSION }}-Linux.deb
# Ubuntu 20:
$ dpkg -i ubuntu-20.04-cbmc-${{ env.CBMC_TAG }}-Linux.deb
$ dpkg -i ubuntu-20.04-cbmc-${{ env.CBMC_VERSION }}-Linux.deb
```

## Windows

On Windows, install CBMC by downloading the `cbmc-${{ env.CBMC_TAG }}-win64.msi` installer below, double-clicking on the installer to run it, and adding the folder `C:\Program Files\cbmc\bin` in your `PATH` environment variable.
On Windows, install CBMC by downloading the `cbmc-${{ env.CBMC_VERSION }}-win64.msi` installer below, double-clicking on the installer to run it, and adding the folder `C:\Program Files\cbmc\bin` in your `PATH` environment variable.

For installation from the windows command prompt, run:

```sh
msiexec /i cbmc-${{ env.CBMC_TAG }}-win64.msi
msiexec /i cbmc-${{ env.CBMC_VERSION }}-win64.msi
PATH="C:\Program Files\cbmc\bin";%PATH%
```

Expand All @@ -87,7 +87,7 @@ jobs:
set up correctly, and then issue:

```sh
$ docker run -it diffblue/cbmc:${{ env.CBMC-TAG }}
$ docker run -it diffblue/cbmc:${{ env.CBMC_VERSION }}
#
```

Expand Down