Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

build: replace self-hosted runner with default m1 runners #682

Merged
merged 2 commits into from
Mar 21, 2024
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
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
Loading