You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yaml
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,38 @@ jobs:
26
26
exit 1
27
27
fi
28
28
- name: Create release
29
-
uses: ncipollo/release-action@v1
29
+
# The GitHub action actions/create-release is deprecated:
30
+
# https://github.com/actions/create-release
31
+
# GitHub recommends ncipollo/release-action@v1, but that
32
+
# action fails to trigger the release workflows for brew and
33
+
# pypi, perhaps because it does not trigger the expected kind
34
+
# of release event.
35
+
uses: actions/create-release@v1
30
36
with:
31
-
bodyFile: .github/workflows/release.md
37
+
tag_name: starterkit-${{ env.TAG_VERSION }}
38
+
release_name: starterkit-${{ env.TAG_VERSION }}
39
+
body: |
40
+
This is the CBMC Starter Kit version ${{ env.TAG_VERSION }}.
41
+
42
+
The [CBMC starter kit](https://model-checking.github.io/cbmc-starter-kit/) makes it easy to add [CBMC](https://github.com/diffblue/cbmc) verification to a software project. See the [starter kit tutorial](https://model-checking.github.io/cbmc-training/starter-kit/overview/index.html) for an example of how to use the starter kit.
43
+
44
+
On MacOS, you can install with brew. Install with
45
+
```
46
+
brew tap aws/tap
47
+
brew install cbmc-starter-kit
48
+
```
49
+
and upgrade to the latest version with
50
+
```
51
+
brew upgrade cbmc-starter-kit
52
+
```
53
+
54
+
On all machines, you can install with pip. Install with
0 commit comments