Include RTS' dependencies for Docker image (#7773)

This commit is contained in:
Shrikant Sharat Kandula 2021-09-23 20:32:22 +05:30 committed by GitHub
parent 57ed477510
commit 48e2a3d01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,12 +172,18 @@ jobs:
ls -l dist
# Upload the build artifact so that it can be used by the test & deploy job in the workflow
- name: Upload server build bundle
- name: Upload RTS build bundle
uses: actions/upload-artifact@v2
with:
name: rts-build
path: app/rts/dist/
- name: Upload RTS dependencies bundle
uses: actions/upload-artifact@v2
with:
name: rts-build-deps
path: app/rts/node_modules/
package:
needs: [prelude, buildClient, buildServer, buildRts]
@ -205,6 +211,12 @@ jobs:
name: rts-build
path: app/rts/dist
- name: Download the rts dependencies artifact
uses: actions/download-artifact@v2
with:
name: rts-build-deps
path: app/rts/node_modules/
- name: Build and push client image
working-directory: app/client
run: |