Skip to content

Commit

Permalink
Use ARM/x86 for macOS build names
Browse files Browse the repository at this point in the history
  • Loading branch information
GriffinRichards committed Dec 22, 2024
1 parent 298306c commit 3d71e48
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,19 @@ jobs:
strategy:
matrix:
os: [macos-latest, macos-13]
include:
- os: macos-latest
BUILD_NAME: porymap-macOS-ARM-${{ github.ref_name }}
- os: macos-13
BUILD_NAME: porymap-macOS-x86-${{ github.ref_name }}
runs-on: ${{ matrix.os }}
env:
BUILD_NAME: porymap-${{ matrix.os }}-${{ github.ref_name }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

- name: Test Build Name
run: echo $BUILD_NAME

- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
Expand Down

0 comments on commit 3d71e48

Please sign in to comment.