File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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+ with :
30+ name : openandroidinstaller-${{ github.sha }}-${{ matrix.os }}
31+ path : dist/
You can’t perform that action at this time.
0 commit comments