Skip to content

Commit

Permalink
[IDLE-000] rsync 명령 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
J0onYEong authored Nov 19, 2024
1 parent 1f2b008 commit fb8dc3f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/merge_to_develop_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
if: steps.cache-spm-build.outputs.cache-hit == 'true'
run: |
cd project/Tuist
rsync -a /Users/runner/spm_builds/.build/ .build/
rsync -a /Users/runner/spm_builds/.build/ .
#7-1. 캐싱된 Package.swift가 있는지 확인
- name: checkout Package.swift
Expand Down Expand Up @@ -95,11 +95,16 @@ jobs:
cp '${{ github.workspace }}/project/Tuist/Package.swift' /Users/runner/spm_builds
ls -l /Users/runner/spm_builds
#10. 프로젝트 테스트 시작
#10. Cache project
- name: Test project
run: |
cd project
tuist cache
#11. 프로젝트 테스트 시작
- name: Test project
run: |
cd project
make test
Expand Down

0 comments on commit fb8dc3f

Please sign in to comment.