Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Nov 12, 2023
1 parent 28e77da commit a3acb43
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ jobs:
pip install flake8
pip install -r Face_Landmarker/requirements.txt
pyinstaller Face_Landmarker/Face_Landmarker_Link.spec
- name: 'Zip files'
run: zip -r Face_Landmarker_Link_linux.zip dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: build_artifact_linux
path: |
dist/Face_Landmarker_Link
path: Face_Landmarker_Link_linux.zip

build_windows:

Expand All @@ -49,12 +50,13 @@ jobs:
pip install flake8
pip install -r Face_Landmarker/requirements.txt
pyinstaller Face_Landmarker/Face_Landmarker_Link.spec
- name: 'Zip files'
run: zip -r Face_Landmarker_Link_windows.zip dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: build_artifact_windows
path: |
dist/Face_Landmarker_Link
path: Face_Landmarker_Link_windows.zip

build_macos:

Expand All @@ -72,9 +74,10 @@ jobs:
pip install flake8
pip install -r Face_Landmarker/requirements.txt
pyinstaller Face_Landmarker/Face_Landmarker_Link.spec
- name: 'Zip files'
run: zip -r Face_Landmarker_Link_macos.zip dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: build_artifact_macos
path: |
dist/Face_Landmarker_Link
path: Face_Landmarker_Link_macos.zip

0 comments on commit a3acb43

Please sign in to comment.