Skip to content

Commit 6e0ff82

Browse files
authored
Merge pull request #206 from YAPP-Github/fix/#205-workflow-environment
Fix: μ›Œν¬ν”Œλ‘œμš° ν™˜κ²½ 버전 μˆ˜μ •
2 parents 2ec5403 + 754ad1c commit 6e0ff82

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

β€Ž.github/workflows/appstore_release.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: macos-latest
13+
runs-on: macos-26
1414

1515
steps:
1616
- uses: actions/checkout@v4
1717

1818
- name: Set up Xcode
1919
uses: maxim-lobanov/setup-xcode@v1
2020
with:
21-
xcode-version: '16.1'
21+
xcode-version: latest-stable
2222

2323
- uses: shimataro/ssh-key-action@v2
2424
with:

β€Ž.github/workflows/build_test.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: macos-latest
15+
runs-on: macos-26
1616

1717
steps:
1818
- uses: actions/checkout@v4
1919

2020
- name: Set up Xcode
2121
uses: maxim-lobanov/setup-xcode@v1
2222
with:
23-
xcode-version: '16.1'
23+
xcode-version: latest-stable
2424

2525
- uses: shimataro/ssh-key-action@v2
2626
with:

β€Ž.github/workflows/develop_hotfix.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
build:
1414
if: startsWith(github.event.head_commit.message, '[hotfix]')
15-
runs-on: macos-latest
15+
runs-on: macos-26
1616

1717
steps:
1818
- uses: actions/checkout@v4

β€Ž.github/workflows/testflight_release.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ on:
1515
jobs:
1616
build:
1717
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true }}
18-
runs-on: macos-latest
18+
runs-on: macos-26
1919

2020
steps:
2121
- uses: actions/checkout@v4
2222

2323
- name: Set up Xcode
2424
uses: maxim-lobanov/setup-xcode@v1
2525
with:
26-
xcode-version: '16.1'
26+
xcode-version: latest-stable
2727

2828
- uses: shimataro/ssh-key-action@v2
2929
with:

β€Žfastlane/Fastfileβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ platform :ios do
4141
workspace: "Pokit.xcworkspace",
4242
scheme: "App",
4343
configuration: "Debug",
44-
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.5",
4544
export_method: "development",
4645
export_options: {
4746
provisioningProfiles: {
@@ -73,7 +72,6 @@ platform :ios do
7372
workspace: "Pokit.xcworkspace",
7473
scheme: "App",
7574
configuration: "Release",
76-
destination: "generic/platform=iOS",
7775
export_method: "app-store",
7876
export_options: {
7977
provisioningProfiles: {

0 commit comments

Comments
Β (0)