Skip to content

Commit 674705c

Browse files
authored
Fix macOS architecture labels in workflow
1 parent 616d45f commit 674705c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
architecture: aarch64
3838
- os: ubuntu-latest
3939
architecture: x86
40-
- os: macos-15-inte
40+
- os: macos-15-intel
4141
architecture: aarch64
42-
- os: macos-15-inte
42+
- os: macos-15-intel
4343
architecture: x86
4444
- os: macos-latest
4545
architecture: aarch64
@@ -68,22 +68,22 @@ jobs:
6868
steps:
6969
- uses: actions/checkout@master
7070

71-
- name: Setup python
71+
- name: Setup Python ${{ matrix.python }}
7272
uses: actions/setup-python@v6
7373
with:
7474
python-version: ${{ matrix.python }}
7575
architecture: ${{ matrix.architecture == 'aarch64' && 'arm64' || matrix.architecture }}
7676
allow-prereleases: true
7777

78-
- name: Setup java
78+
- name: Setup Java ${{ matrix.java }}
7979
uses: actions/setup-java@v5
8080
with:
8181
java-version: ${{ matrix.java }}
8282
distribution: 'temurin'
8383
architecture: ${{ matrix.architecture }}
8484

8585
- name: (macOS) Setup test dependencies
86-
if: matrix.os == 'macos-latest' || matrix.os == 'macos-15-intel'
86+
if: runner.os == 'macOS'
8787
run: brew install ant
8888

8989
- name: Build test classes via ant

0 commit comments

Comments
 (0)