|
57 | 57 | needs: [setup] |
58 | 58 | strategy: |
59 | 59 | matrix: |
60 | | - os: [ubuntu-20.04, macos-11, windows-2019] |
| 60 | + os: [ubuntu-20.04, macos-12, windows-2019] |
61 | 61 | fail-fast: true |
62 | 62 | env: |
63 | 63 | VERSION: ${{ needs.setup.outputs.version }} |
|
96 | 96 |
|
97 | 97 | - name: Set deployment target (macOS) |
98 | 98 | run: echo "MACOSX_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV # TODO: set this to 10.12 once rocksDB issue is fixed |
99 | | - if: matrix.os == 'macos-11' |
| 99 | + if: matrix.os == 'macos-12' |
100 | 100 |
|
101 | 101 | - name: Install required packages (Linux) |
102 | 102 | run: | |
@@ -146,7 +146,7 @@ jobs: |
146 | 146 | APPLE_ID: ${{ secrets.APPLE_ID }} |
147 | 147 | APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} |
148 | 148 | working-directory: packages/desktop |
149 | | - if: matrix.os == 'macos-11' |
| 149 | + if: matrix.os == 'macos-12' |
150 | 150 |
|
151 | 151 | - name: Build Electron app (Windows) |
152 | 152 | run: yarn compile:${env:STAGE}:win |
@@ -185,7 +185,7 @@ jobs: |
185 | 185 | - name: Compute checksums (macOS) |
186 | 186 | run: for i in `ls | grep 'firefly-*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done |
187 | 187 | working-directory: packages/desktop/out |
188 | | - if: matrix.os == 'macos-11' |
| 188 | + if: matrix.os == 'macos-12' |
189 | 189 |
|
190 | 190 | - name: Compute checksums (Windows) |
191 | 191 | run: Get-ChildItem "." -Filter firefly-* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') } |
@@ -224,7 +224,7 @@ jobs: |
224 | 224 | - name: Downloading artifacts |
225 | 225 | uses: actions/download-artifact@v2 |
226 | 226 | with: |
227 | | - name: firefly-desktop-macos-11 |
| 227 | + name: firefly-desktop-macos-12 |
228 | 228 | path: assets |
229 | 229 |
|
230 | 230 | - name: Downloading artifacts |
|
0 commit comments