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 3823608 commit 4387ff5
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_linux.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -51,7 +55,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_windows.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -75,7 +83,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_macos.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
18 changes: 15 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_linux.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -50,7 +54,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_windows.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -74,7 +82,11 @@ jobs:
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
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Face_Landmarker_Link_macos.zip'
path: dist/Face_Landmarker_Link
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 4387ff5

Please sign in to comment.