From 1b4f3d58728283a3241cd7c6b784a005da0395a4 Mon Sep 17 00:00:00 2001 From: Yaroslav Gurov Date: Tue, 21 Apr 2026 01:57:47 +0200 Subject: [PATCH] chore: remove MacOS-old from build targets --- .github/workflows/deploy.yml | 87 ------------------------------------ 1 file changed, 87 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9fd973498..8200da0da 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -258,93 +258,6 @@ jobs: IOS_APP_PROVISIONING_PROFILE: ${{ secrets.IOS_APP_PROVISIONING_PROFILE }} IOS_NE_PROVISIONING_PROFILE: ${{ secrets.IOS_NE_PROVISIONING_PROFILE }} -# - name: 'Upload appstore .ipa and dSYMs to artifacts' -# uses: actions/upload-artifact@v4 -# with: -# name: app-store ipa & dsyms -# path: | -# ${{ github.workspace }}/AmneziaVPN-iOS.ipa -# ${{ github.workspace }}/*.app.dSYM.zip -# retention-days: 7 - -# ------------------------------------------------------ - - Build-MacOS-old: - runs-on: macos-latest - - env: - # Keep compat with MacOS 10.15 aka Catalina by Qt 6.4 - QT_VERSION: 6.4.3 - - MAC_TEAM_ID: ${{ secrets.MAC_TEAM_ID }} - - MAC_APP_CERT_CERT: ${{ secrets.MAC_APP_CERT_CERT }} - MAC_SIGNER_ID: ${{ secrets.MAC_SIGNER_ID }} - MAC_APP_CERT_PW: ${{ secrets.MAC_APP_CERT_PW }} - - MAC_INSTALLER_SIGNER_CERT: ${{ secrets.MAC_INSTALLER_SIGNER_CERT }} - MAC_INSTALLER_SIGNER_ID: ${{ secrets.MAC_INSTALLER_SIGNER_ID }} - MAC_INSTALL_CERT_PW: ${{ secrets.MAC_INSTALL_CERT_PW }} - - APPLE_DEV_EMAIL: ${{ secrets.APPLE_DEV_EMAIL }} - APPLE_DEV_PASSWORD: ${{ secrets.APPLE_DEV_PASSWORD }} - - PROD_AGW_PUBLIC_KEY: ${{ secrets.PROD_AGW_PUBLIC_KEY }} - PROD_S3_ENDPOINT: ${{ secrets.PROD_S3_ENDPOINT }} - DEV_AGW_PUBLIC_KEY: ${{ secrets.DEV_AGW_PUBLIC_KEY }} - DEV_AGW_ENDPOINT: ${{ secrets.DEV_AGW_ENDPOINT }} - DEV_S3_ENDPOINT: ${{ secrets.DEV_S3_ENDPOINT }} - FREE_V2_ENDPOINT: ${{ secrets.FREE_V2_ENDPOINT }} - PREM_V1_ENDPOINT: ${{ secrets.PREM_V1_ENDPOINT }} - - steps: - - name: 'Setup xcode' - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '15.4.0' - - - name: 'Install Qt' - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - host: 'mac' - target: 'desktop' - arch: 'clang_64' - modules: 'qtremoteobjects qt5compat qtshadertools' - dir: ${{ runner.temp }} - setup-python: 'true' - set-env: 'true' - extra: '--external 7z --base ${{ env.QT_MIRROR }}' - - - - name: 'Get sources' - uses: actions/checkout@v4 - with: - submodules: 'true' - fetch-depth: 10 - - # - name: 'Setup ccache' - # uses: hendrikmuhs/ccache-action@v1.2 - - - name: 'Build project' - run: | - export QT_BIN_DIR="${{ runner.temp }}/Qt/${{ env.QT_VERSION }}/macos/bin" - bash deploy/build_macos.sh -n - - - name: 'Upload installer artifact' - uses: actions/upload-artifact@v4 - with: - name: AmneziaVPN_MacOS_old_installer - path: deploy/build/pkg/AmneziaVPN.pkg - retention-days: 7 - - - name: 'Upload unpacked artifact' - uses: actions/upload-artifact@v4 - with: - name: AmneziaVPN_MacOS_old_unpacked - path: deploy/build/client/AmneziaVPN.app - retention-days: 7 - # ------------------------------------------------------ Build-MacOS: