Skip to content

Commit ec21533

Browse files
authored
Merge pull request #5776 from NlightNFotis/cbmc-5.22.1-hotfix
[HOTFIX] Rename version tag during release.
2 parents 08c9ae9 + 81fb0b1 commit ec21533

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/regular-release.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
uses: actions/create-release@v1
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.DB_CI_CPROVER_ACCESS_TOKEN }}
36-
CBMC_TAG: ${{ needs.get-version-information.outputs.version }}
36+
CBMC_VERSION: ${{ needs.get-version-information.outputs.version }}
3737
with:
38-
tag_name: ${{ env.CBMC_TAG }}
39-
release_name: ${{ env.CBMC_TAG }}
38+
tag_name: cbmc-${{ env.CBMC_VERSION }}
39+
release_name: cbmc-${{ env.CBMC_VERSION }}
4040
body: |
41-
This is CBMC version ${{ env.CBMC_TAG }}.
41+
This is CBMC version ${{ env.CBMC_VERSION }}.
4242
4343
## MacOS
4444
@@ -60,19 +60,19 @@ jobs:
6060
6161
```sh
6262
# Ubuntu 18:
63-
$ dpkg -i ubuntu-18.04-cbmc-${{ env.CBMC_TAG }}-Linux.deb
63+
$ dpkg -i ubuntu-18.04-cbmc-${{ env.CBMC_VERSION }}-Linux.deb
6464
# Ubuntu 20:
65-
$ dpkg -i ubuntu-20.04-cbmc-${{ env.CBMC_TAG }}-Linux.deb
65+
$ dpkg -i ubuntu-20.04-cbmc-${{ env.CBMC_VERSION }}-Linux.deb
6666
```
6767
6868
## Windows
6969
70-
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.
70+
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.
7171
7272
For installation from the windows command prompt, run:
7373
7474
```sh
75-
msiexec /i cbmc-${{ env.CBMC_TAG }}-win64.msi
75+
msiexec /i cbmc-${{ env.CBMC_VERSION }}-win64.msi
7676
PATH="C:\Program Files\cbmc\bin";%PATH%
7777
```
7878
@@ -87,7 +87,7 @@ jobs:
8787
set up correctly, and then issue:
8888
8989
```sh
90-
$ docker run -it diffblue/cbmc:${{ env.CBMC-TAG }}
90+
$ docker run -it diffblue/cbmc:${{ env.CBMC_VERSION }}
9191
#
9292
```
9393

0 commit comments

Comments
 (0)