We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d19562 commit ec31516Copy full SHA for ec31516
2 files changed
.github/workflows/python-app.yml
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: Release artifacts
2
+
3
+on: [release]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Install
12
+ run: sudo apt-get update && sudo apt-get install -y zlib1g-dev cmake ninja-build
13
14
+ - name: Build
15
+ run: ./cheribuild.py cheri-std093-llvm -d
16
17
+ - uses: actions/upload-artifact@v4
18
+ with:
19
+ name: 'cheri-llvm'
20
+ path: ./output/
21
22
+ - uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
23
+ if: startsWith(github.ref, 'refs/tags/')
24
25
+ prerelease: true
26
+ files: ./output/
0 commit comments