mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-04 13:37:46 +02:00
Ignore cache from other repository
This commit is contained in:
parent
d66ed32337
commit
6b28eff8f0
1 changed files with 3 additions and 3 deletions
|
@ -8,14 +8,14 @@ This Action provides Amazon Web Services S3 backend (and compatible software) fo
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: Cache multiple paths
|
- name: Cache multiple paths
|
||||||
uses: whywaita/actions-cache-s3@main
|
uses: whywaita/actions-cache-s3@v2
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/cache
|
~/cache
|
||||||
!~/cache/exclude
|
!~/cache/exclude
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
key: ${{ github.repository }}-${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-go-
|
${{ github.repository }}-${{ runner.os }}-go-
|
||||||
aws-s3-bucket: ${{ secrets.AWS_S3_BUCKET_NAME }}
|
aws-s3-bucket: ${{ secrets.AWS_S3_BUCKET_NAME }}
|
||||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue