Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/builds_desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,6 @@ jobs:
- name: Deploy application
run: ./deploy_linux.sh -p

# Upload AppImage
- name: Upload AppImage
uses: actions/upload-artifact@v6
with:
name: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-linux64.AppImage
path: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-linux64.AppImage
retention-days: 7

## macOS build ###############################################################
build-mac:
name: "macOS CI build"
Expand Down Expand Up @@ -158,14 +150,6 @@ jobs:
MACOS_CERTIFICATE_NAME: ${{ secrets.MACOS_CERTIFICATE_NAME }}
run: ./deploy_macos.sh -c -p

# Upload application bundle
- name: Upload application bundle
uses: actions/upload-artifact@v6
with:
name: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-macOS.zip
path: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-macOS.zip
retention-days: 7

## Windows build #############################################################
build-windows:
name: "Windows CI build"
Expand Down Expand Up @@ -226,19 +210,3 @@ jobs:
# Deploy application
- name: Deploy application
run: sh deploy_windows.sh -c -p

# Upload application ZIP
- name: Upload application ZIP
uses: actions/upload-artifact@v6
with:
name: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-win64.zip
path: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-win64.zip
retention-days: 7

# Upload NSIS installer
- name: Upload NSIS installer
uses: actions/upload-artifact@v6
with:
name: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-win64.exe
path: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}-win64.exe
retention-days: 7
Loading