Compare commits

..

2 Commits

Author SHA1 Message Date
Sampark Sharma
90d762887d Added tips and workarounds for cross os 2022-12-27 11:00:08 +00:00
Sampark Sharma
c9cbdaf0ee Revert compression changes related to windows
due to symlink issues
2022-12-27 10:38:49 +00:00
3 changed files with 0 additions and 20 deletions

View File

@@ -1,3 +0,0 @@
_-$./"="
"action.scope.go"
"="go

View File

@@ -121,7 +121,6 @@ See [Examples](examples.md) for a list of `actions/cache` implementations for us
- [Swift, Objective-C - Carthage](./examples.md#swift-objective-c---carthage)
- [Swift, Objective-C - CocoaPods](./examples.md#swift-objective-c---cocoapods)
- [Swift - Swift Package Manager](./examples.md#swift---swift-package-manager)
- [Swift - Mint](./examples.md#swift---mint)
## Creating a cache key

View File

@@ -38,7 +38,6 @@
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
- [Swift - Swift Package Manager](#swift---swift-package-manager)
- [Swift - Mint](#swift---mint)
## C# - NuGet
@@ -642,18 +641,3 @@ whenever possible:
restore-keys: |
${{ runner.os }}-spm-
```
## Swift - Mint
```yaml
env:
MINT_PATH: .mint/lib
MINT_LINK_PATH: .mint/bin
steps:
- uses: actions/cache@v3
with:
path: .mint
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: |
${{ runner.os }}-mint-
```