fix
This commit is contained in:
parent
916388cbba
commit
209618a6a2
@ -8,6 +8,8 @@ jobs:
|
|||||||
image: catthehacker/ubuntu:act-latest
|
image: catthehacker/ubuntu:act-latest
|
||||||
env:
|
env:
|
||||||
RUNNER_TOOL_CACHE: /toolcache
|
RUNNER_TOOL_CACHE: /toolcache
|
||||||
|
outputs:
|
||||||
|
hash: ${{ steps.get-hash.outputs.hash }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -48,7 +50,7 @@ jobs:
|
|||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: ${{ runner.os }}-yarn-${{ needs.setup.steps.get-hash.outputs.hash }}
|
key: ${{ runner.os }}-yarn-${{ needs.setup.outputs.hash }}
|
||||||
|
|
||||||
- name: Dependent installation
|
- name: Dependent installation
|
||||||
run: yarn install
|
run: yarn install
|
||||||
@ -62,6 +64,7 @@ jobs:
|
|||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- run: echo "${{ needs.setup.steps.get-hash.outputs.hash }}"
|
- run: echo "${{ needs.setup.steps.get-hash.outputs.hash }}"
|
||||||
|
- run: echo "${{ needs.setup.outputs.hash }}"
|
||||||
- run: echo "${{ steps.get-hash.outputs.hash }}"
|
- run: echo "${{ steps.get-hash.outputs.hash }}"
|
||||||
- run: echo "${{ outputs.hash }}"
|
- run: echo "${{ outputs.hash }}"
|
||||||
|
|
||||||
@ -69,7 +72,7 @@ jobs:
|
|||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: ${{ runner.os }}-yarn-${{ needs.setup.steps.get-hash.outputs.hash }}
|
key: ${{ runner.os }}-yarn-${{ needs.setup.outputs.hash }}
|
||||||
|
|
||||||
- name: Dependent installation
|
- name: Dependent installation
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user