Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
๐Ÿ’š :: [#210] CI ์Šคํฌ๋ฆฝํŠธ ์žฌ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
junseopark0331 committed May 25, 2024
1 parent 32ed99c commit 58cd8a3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,20 @@ env:
jobs:
prepare-dependency:
name: โš™๏ธ prepare for CI
runs-on: macos-latest
runs-on: macos-14

steps:
- uses: actions/checkout@v2
- uses: jdx/mise-action@v2
with:
xcode-version: 15.2

- name: Install Tuist
run: curl -Ls https://install.tuist.io | bash
run: mise install tuist

- name: Compute dependency cache key
id: compute_hash
run: echo "hash=${{ hashFiles('Tuist/Dependencies.swift') }}" >> $GITHUB_OUTPUT
run: echo "hash=${{ hashFiles('Tuist/Package.swift') }}" >> $GITHUB_OUTPUT

- name: Check dependency cache
uses: actions/cache@v3
Expand All @@ -33,7 +36,7 @@ jobs:

- name: Install dependencies
if: steps.cache_dependencies.outputs.cache-hit == ''
run: tuist fetch
run: tuist install
outputs:
dependency_cache_key: ${{ steps.compute_hash.outputs.hash }}

Expand Down

0 comments on commit 58cd8a3

Please sign in to comment.