Skip to content

Commit 5e4a98a

Browse files
authored
Create manual-build.yml
1 parent b99e84f commit 5e4a98a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/manual-build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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: ['windows-latest', 'ubuntu-latest', 'macos-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 install
24+
- run: make build-app
25+
# Optionally verify that it works (provided that it does not need user interaction)
26+
#- run: ./dist/your-code/your-code
27+
- uses: actions/upload-artifact@v3
28+
with:
29+
name: openandroidinstaller-${{ github.sha }}-${{ matrix.os }}
30+
path: dist/

0 commit comments

Comments
 (0)