fix: outputs referencing

This commit is contained in:
Karol Sójko 2022-10-19 14:21:07 +02:00
parent 526a21dde3
commit 4850807ac1
No known key found for this signature in database
GPG key ID: A50543BF560BDEB0

View file

@ -9,6 +9,10 @@ on:
workspace_name:
required: true
type: string
deploy_web:
required: false
default: true
type: boolean
deploy_worker:
required: false
default: true
@ -83,7 +87,7 @@ jobs:
with:
path: |
packages/**/dist
${{ steps.bundle-dir.outputs.temp_dir }}
${{ needs.build.steps.bundle-dir.outputs.temp_dir }}
key: ${{ runner.os }}-${{ inputs.service_name }}-build-${{ github.sha }}
- name: Set up Node
@ -113,7 +117,7 @@ jobs:
with:
path: |
packages/**/dist
${{ steps.bundle-dir.outputs.temp_dir }}
${{ needs.build.steps.bundle-dir.outputs.temp_dir }}
key: ${{ runner.os }}-${{ inputs.service_name }}-build-${{ github.sha }}
- name: Set up Node
@ -144,7 +148,7 @@ jobs:
with:
path: |
packages/**/dist
${{ steps.bundle-dir.outputs.temp_dir }}
${{ needs.build.steps.bundle-dir.outputs.temp_dir }}
key: ${{ runner.os }}-${{ inputs.service_name }}-build-${{ github.sha }}
- name: Set up Node
@ -213,7 +217,7 @@ jobs:
with:
path: |
packages/**/dist
${{ steps.bundle-dir.outputs.temp_dir }}
${{ needs.build.steps.bundle-dir.outputs.temp_dir }}
key: ${{ runner.os }}-${{ inputs.service_name }}-build-${{ github.sha }}
- name: Set up Node
@ -276,7 +280,7 @@ jobs:
with:
path: |
packages/**/dist
${{ steps.bundle-dir.outputs.temp_dir }}
${{ needs.build.steps.bundle-dir.outputs.temp_dir }}
key: ${{ runner.os }}-${{ inputs.service_name }}-build-${{ github.sha }}
- name: Set up Node
@ -324,6 +328,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.deploy_web }}
steps:
- name: Configure AWS credentials