Skip to content

Commit

Permalink
build: replace self-hosted macos-14 runner with github runner (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal authored Mar 21, 2024
1 parent 16e0503 commit a951fd3
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/bundles-mac_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ on:
jobs:
build:
name: macOS on M1
runs-on: [macOS, ARM64]
env:
KEYCHAIN: job-${{ github.job }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
runs-on: macos-14
steps:
- uses: actions/checkout@v2

Expand All @@ -51,13 +49,11 @@ jobs:

- uses: Apple-Actions/import-codesign-certs@v1
with:
keychain: ${{ env.KEYCHAIN }}
p12-file-base64: ${{ secrets.CERTIFICATES_FILE_BASE64 }}
p12-password: ${{ secrets.CERTIFICATES_PASSWORD }}

- name: Setup JavaFX
run: |
rm -rf /tmp/javafx-jmods-${{ inputs.javafx-version }}
wget -P /tmp https://download2.gluonhq.com/openjfx/${{ inputs.javafx-version }}/openjfx-${{ inputs.javafx-version }}_osx-aarch64_bin-jmods.zip
unzip /tmp/openjfx-${{ inputs.javafx-version }}_osx-aarch64_bin-jmods.zip -d /tmp
Expand Down Expand Up @@ -118,7 +114,3 @@ jobs:
with:
name: artifacts
path: ${{ steps.outputfile.outputs.path }}

- name: Delete keychain
run: |
security delete-keychain "${{ env.KEYCHAIN }}".keychain

0 comments on commit a951fd3

Please sign in to comment.