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 a3acb43 commit 3823608
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,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 @@ -48,12 +49,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 @@ -71,12 +73,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_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
release:
name: Release pushed tag
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -122,5 +125,5 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
**/build_artifact*.zip
**/Face_Landmarker_Link*.zip

0 comments on commit 3823608

Please sign in to comment.