summaryrefslogtreecommitdiff
path: root/.github/actions/add-to-release/action.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions/add-to-release/action.yml')
-rw-r--r--.github/actions/add-to-release/action.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/actions/add-to-release/action.yml b/.github/actions/add-to-release/action.yml
new file mode 100644
index 000000000..09998f46f
--- /dev/null
+++ b/.github/actions/add-to-release/action.yml
@@ -0,0 +1,17 @@
+name: Add binary to release
+description: Add cvc5 binary to the current release
+inputs:
+ github-token:
+ description: token to upload binary
+runs:
+ using: composite
+ steps:
+ - name: Rename binaries for release
+ run: |
+ cp build/bin/cvc5 cvc5-${{ runner.os }}
+
+ - name: Add binaries to release
+ uses: softprops/action-gh-release@v1
+ with:
+ token: ${{ inputs.github-token }}
+ files: cvc5-*
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback