Compare commits

..

7 Commits

Author SHA1 Message Date
github.com/sessions/verified-device/lostleolotus/overview
012e78ba5e Merge bfedfbb7bb into 365406cb70 2022-12-30 08:03:25 -06:00
Tanuj Kumar Mishra
365406cb70 Merge pull request #1051 from uhooi/feature/add_mint_example
Add Mint example
2022-12-30 11:00:22 +05:30
github.com/sessions/verified-device/lostleolotus/overview
bfedfbb7bb Create go.nodex-json.json.QrK.s 2022-12-29 20:32:49 -06:00
uhooi
d6217569d5 Update Mint example 2022-12-29 22:28:56 +09:00
uhooi
84e54000da Merge remote-tracking branch 'origin/main' into feature/add_mint_example 2022-12-29 22:27:37 +09:00
uhooi
35f35f44e8 Update examples.md 2020-07-19 19:52:18 +09:00
uhooi
ca1c035094 Update README.md 2020-07-19 19:46:58 +09:00
3 changed files with 20 additions and 0 deletions

View File

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

View File

@@ -121,6 +121,7 @@ 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,6 +38,7 @@
- [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
@@ -641,3 +642,18 @@ 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-
```