Skip to content

Commit 8ddda7b

Browse files
committed
ci: fix issues with CI
1 parent 8e970c3 commit 8ddda7b

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ jobs:
232232
yarn turbo run build:android:odrd --cache-dir="${{ env.TURBO_CACHE_DIR }}"
233233
234234
build-ios-lmfs:
235-
runs-on: macos-14
235+
runs-on:
236+
labels: macos-latest-xlarge
236237
timeout-minutes: 45
237238
env:
238239
TURBO_CACHE_DIR: .turbo/ios
@@ -288,7 +289,8 @@ jobs:
288289
yarn turbo run build:ios:lmfs --cache-dir="${{ env.TURBO_CACHE_DIR }}"
289290
290291
build-ios-odrd:
291-
runs-on: macos-14
292+
runs-on:
293+
labels: macos-latest-xlarge
292294
timeout-minutes: 45
293295
env:
294296
TURBO_CACHE_DIR: .turbo/ios

.github/workflows/release-please.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: release-please
15+
## Runs the release-please action for all new pushes to the main branch.
16+
## This will create new release-PRs, create GitHub releases,
17+
## and update the CHANGELOG.md.
18+
19+
name: Release Please
1620

1721
on:
1822
push:
19-
branches:
20-
- main
23+
branches: [main]
24+
workflow_dispatch:
2125

2226
concurrency:
2327
group: ${{ github.workflow }}-${{ github.ref }}
@@ -31,6 +35,8 @@ jobs:
3135
release-please:
3236
runs-on: ubuntu-latest
3337
steps:
34-
- uses: googleapis/release-please-action@d1a8f221d7723166f48a584aebba00ef3f6febec
38+
- id: release
39+
name: Release Please
40+
uses: googleapis/release-please-action@v4
3541
with:
3642
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}

0 commit comments

Comments
 (0)