🔀 :: [#101] 안마의자 Feature 구현 #142
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Caching with Tuist Dependencies | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "*" ] | |
env: | |
CACHED_DEPENDENCY_PATHS: ${{ github.workspace }}/Tuist/Dependencies | |
jobs: | |
caching-dependencies: | |
name: 🧩 Caching Dependencies | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compute dependency cache key | |
id: compute_hash | |
run: echo "hash=${{ hashFiles('Tuist/Dependencies.swift') }}" >> $GITHUB_OUTPUT | |
- name: Check dependency key | |
uses: actions/cache@v3 | |
id: cache_dependencies | |
with: | |
path: ${{ env.CACHED_DEPENDENCY_PATHS }} | |
key: ${{ steps.compute_hash.outputs.hash }} | |
- name: Install tuist | |
if: steps.cache_dependencies.outputs.cache-hit != 'true' | |
run: curl -Ls https://install.tuist.io | bash | |
- name: Install dependencies | |
if: steps.cache_dependencies.outputs.cache-hit != 'true' | |
run: tuist fetch | |
outputs: | |
dependency_cache_key: ${{ steps.compute_hash.outputs.hash }} |