fix: use outputs in build job

This commit is contained in:
Derrick Hammer 2023-06-25 01:11:21 -04:00
parent 6f4f13e1f7
commit 967c194a45
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
outputs:
cache-primary-key: ${{ steps.cache.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
@ -29,7 +31,7 @@ jobs:
- uses: actions/cache/restore@v3
with:
path: .
key: ${{ needs.build.steps.cache.outputs.cache-primary-key }}
key: ${{ needs.build.outputs.cache-primary-key }}
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with: