diff --git a/.github/workflows/merge_to_develop_on_pr.yml b/.github/workflows/merge_to_develop_on_pr.yml index 764392c0..1388fffd 100644 --- a/.github/workflows/merge_to_develop_on_pr.yml +++ b/.github/workflows/merge_to_develop_on_pr.yml @@ -2,6 +2,8 @@ name: PR to [develop] on: pull_request: branches: [ develop ] + workflow_dispatch: + #1. load mise #2. cache tuist @@ -9,6 +11,7 @@ on: #4. checkout tuist project repository #5. fetch XCConfig from repository #6. test tuist project +#7. cache binary jobs: test: @@ -65,8 +68,17 @@ jobs: run: | cd project tuist install + tuist cache tuist test + #7. cache binaries + - name: cache binary + id: cache-binary + uses: actions/cache@v4 + with: + path: /Users/runner/.cache/tuist-cloud + key: ${{ runner.os }}-tuist@${{ env.TUIST_VERSION }} +