ci: use non-extension way of differentiating win32

This commit is contained in:
itsmattkc
2022-09-18 00:40:16 -07:00
parent 89edac10de
commit d0d7b74cf9
+5 -3
View File
@@ -263,18 +263,20 @@ jobs:
# Create Portable ZIP # Create Portable ZIP
echo -n > olive-editor/portable echo -n > olive-editor/portable
mkdir deploy
mv olive-editor deploy
- name: Upload Installer Artifact to GitHub - name: Upload Installer Artifact to GitHub
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: ${{ env.PKGNAME }}.exe name: ${{ env.PKGNAME }}-Installer
path: ${{ runner.workspace }}/build/${{ env.PKGNAME }}.exe path: ${{ runner.workspace }}/build/${{ env.PKGNAME }}.exe
- name: Upload Portable Artifact to GitHub - name: Upload Portable Artifact to GitHub
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: ${{ env.PKGNAME }} name: ${{ env.PKGNAME }}-Portable
path: ${{ runner.workspace }}/build/olive-editor path: ${{ runner.workspace }}/build/deploy
macos: macos:
strategy: strategy: