File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 99# Assign an environment variable that we can use throughout the workflow for the version
1010# of SPS that we are tagging
1111env :
12- FRONTEND_VERSION : ${{ github.ref_name }}
12+ VERSION : ${{ github.ref_name }}
1313 DOCKER_USER : ${{ secrets.DOCKER_USERNAME }}
1414 DOCKER_TOKEN : ${{ secrets.DOCKER_ACCESS_KEY }}
1515
2020
2121 runs-on : ubuntu-latest
2222
23- env :
24- CLOUD_PROVIDER : aws
25-
2623 steps :
2724
2825 - name : Free up some space
@@ -45,12 +42,11 @@ jobs:
4542 # Build the SPS Frontend
4643 - name : Build SPS Frontend
4744 run : |
48- cd /Frontend/examples/typescript
4945 npm install
5046 npm run build-all
5147
5248 # Build the Scalable Pixel Streaming Frontend Docker image from the dist directories of the packages
5349 - name : Build the Scalable Pixel Streaming Frontend Docker image and push to Docker
5450 run : |
55- docker build -t "tensorworks/sps-frontend:$VERSION-$CLOUD_PROVIDER " -f ./dockerfiles/sps-frontend.dockerfile .
56- docker push "tensorworks/sps-frontend:$VERSION-$CLOUD_PROVIDER "
51+ docker build -t "tensorworks/sps-frontend:$VERSION" -f ./dockerfiles/sps-frontend.dockerfile .
52+ docker push "tensorworks/sps-frontend:$VERSION"
You can’t perform that action at this time.
0 commit comments