Skip to content

Commit b8cf5c5

Browse files
authored
Create manual-build-ubuntu.yml
1 parent 0ace805 commit b8cf5c5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
30+
name: openandroidinstaller-${{ github.sha }}-${{ matrix.os }}
31+
path: dist/

0 commit comments

Comments
 (0)