Include RTS' dependencies for Docker image (#7773)

(cherry picked from commit 48e2a3d01a)
This commit is contained in:
Shrikant Sharat Kandula 2021-09-23 20:32:22 +05:30
parent 8a4576c347
commit 41cbd851e8

View File

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