We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a40e43 commit 291f981Copy full SHA for 291f981
.github/workflows/ci.yml
@@ -3,6 +3,8 @@ name: INTSUM CI
3
on:
4
push:
5
branches: [main]
6
+ tags:
7
+ - "v*"
8
pull_request:
9
10
@@ -43,3 +45,16 @@ jobs:
43
45
run: sudo apt install -y ./intsum*Linux.deb
44
46
- name: Run test
47
run: bash .github/scripts/test.sh
48
+
49
+ release:
50
+ runs-on: ubuntu-20.04
51
+ needs: [build_linux, test_linux]
52
+ if: ${{ github.ref_type == 'tag' }}
53
+ steps:
54
+ - name: Download package for Linux
55
+ uses: actions/download-artifact@v2
56
+ with:
57
+ name: build_linux_package
58
+ - uses: softprops/action-gh-release@v1
59
60
+ files: "*.deb"
0 commit comments