File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ on : [push,pull_request]
2
+ jobs :
3
+ ubuntu-touch :
4
+ strategy :
5
+ fail-fast : false
6
+ matrix :
7
+ arch : [armhf, arm64, amd64]
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
12
+ with :
13
+ fetch-depth : 0
14
+ submodules : ' recursive'
15
+ - name : Add safe git directory
16
+ uses : Chia-Network/actions/git-mark-workspace-safe@main
17
+ - name : build package
18
+ uses : tuxecure/clickable@v1
19
+ with :
20
+ image : clickable/ci-20.04-${{ matrix.arch }}
21
+ run : clickable build --skip-review
22
+ - name : Upload .click package
23
+
24
+ with :
25
+ path : build/*/app/*.click
26
+ - name : Publish to Open Store
27
+ if : startsWith( github.ref, 'refs/tags/')
28
+ env :
29
+ OPENSTORE_KEY : ${{ secrets.OPENSTORE_KEY }}
30
+ run : clickable publish "* $(git log -1 --pretty=%B | head -1)" --apikey ${OPENSTORE_KEY}
You can’t perform that action at this time.
0 commit comments