We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9929801 commit 9aca3efCopy full SHA for 9aca3ef
1 file changed
.github/workflows/blank.yml
@@ -0,0 +1,26 @@
1
+name: Build and Release
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+ workflow_dispatch:
10
11
+env:
12
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-20.04
17
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v2
21
22
+ - name: Build and Release
23
+ run: |
24
+ sudo -E bash build.sh
25
+ wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
26
+ bash upload.sh ./*.deb*
0 commit comments