We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ace805 commit b8cf5c5Copy full SHA for b8cf5c5
1 file changed
.github/workflows/manual-build-ubuntu.yml
@@ -0,0 +1,31 @@
1
+# This is a basic workflow that is manually triggered
2
+
3
+name: Manual workflow
4
5
+# Controls when the action will run. Workflow runs when manually triggered using the UI
6
+# or API.
7
+on:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os: ['ubuntu-latest']
17
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - uses: actions/setup-python@v2
21
+ with:
22
+ python-version: 3.10.7
23
+ - run: make poetry
24
+ - run: make install
25
+ - run: make build-app
26
+ # Optionally verify that it works (provided that it does not need user interaction)
27
+ #- run: ./dist/your-code/your-code
28
+ - uses: actions/upload-artifact@v3
29
30
+ name: openandroidinstaller-${{ github.sha }}-${{ matrix.os }}
31
+ path: dist/
0 commit comments