We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b54fe commit 06b4b7bCopy full SHA for 06b4b7b
.github/workflows/verify.yml
@@ -286,14 +286,15 @@ jobs:
286
retention-days: 1
287
288
osx:
289
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.os.name }}
290
timeout-minutes: 180
291
292
strategy:
293
fail-fast: false
294
matrix:
295
os:
296
- - macos-11
+ - { name: 'macos-11', arch: 'intel' }
297
+ - { name: 'macos-14', arch: 'aarch64' }
298
ruby:
299
- 3.0.6
300
@@ -350,7 +351,7 @@ jobs:
350
351
- name: Upload artifact
352
uses: actions/upload-artifact@v4
353
with:
- name: metasploit-osx-installers
354
+ name: metasploit-osx-${{ matrix.os.arch }}-installers
355
path: |
356
metasploit-omnibus/pkg/*.pkg
357
metasploit-omnibus/pkg/*.rpm
0 commit comments