1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-04 21:37:47 +02:00

Reverted to older version

This commit is contained in:
Sankalp Kotewar 2023-01-11 11:19:54 +00:00 committed by GitHub
parent 30f06b918e
commit 6626be91c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -260,53 +260,38 @@ In case of multi-module projects, where the built artifact of one project needs
#### Step 1 - Build the parent module and save it #### Step 1 - Build the parent module and save it
```yaml ```yaml
name: Saving Primes
on: push
jobs:
build:
runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Generate primes - name: Build
run: ./generate-primes.sh run: ./build-parent-module.sh
- name: Save Primes
id: cache-primes-save
- uses: actions/cache/save@v3 - uses: actions/cache/save@v3
id: cache
with: with:
path: | path: path/to/dependencies
path/to/dependencies key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
some/other/dependencies
key: ${{ runner.os }}-primes
``` ```
#### Step 2 - Restore the built artifact from cache using the same key and path #### Step 2 - Restore the built artifact from cache using the same key and path
```yaml ```yaml
name: Restoring Primes
on: push
jobs:
build:
runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Restoring Primes
id: cache-primes-restore
- uses: actions/cache/restore@v3 - uses: actions/cache/restore@v3
id: cache
with: with:
path: | path: path/to/dependencies
path/to/dependencies key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
some/other/dependencies
key: ${{ runner.os }}-primes - name: Install Dependencies
. if: steps.cache.outputs.cache-hit != 'true'
. run: ./install.sh
. //remaining workflow steps continued
- name: Build
run: ./build-child-module.sh
- name: Publish package to public
run: ./publish.sh
``` ```