We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adcbd66 commit eaeed8dCopy full SHA for eaeed8d
.github/workflows/actions/setup/action.yml
@@ -33,6 +33,18 @@ runs:
33
restore-keys: |
34
${{ runner.os }}-spm-
35
36
+ - name: "Compiling Cache"
37
+ uses: actions/cache@v3
38
+ with:
39
+ path: |
40
+ .build/*
41
+ !.build/repositories
42
+ !.build/checkouts
43
+ !.build/artifacts
44
+ key: ${{ runner.os }}-swift-build-${{ github.ref_name }}
45
+ restore-keys: |
46
+ ${{ runner.os }}-swift-build-
47
+
48
# Hint: Use Composite Actions
49
# - https://stackoverflow.com/a/75735736/9801139
50
# - https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-public-action-in-a-subdirectory
0 commit comments