Skip to content

Commit 0134cca

Browse files
committed
updated tag workflow with changes from testing
1 parent f255212 commit 0134cca

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/tag-workflow.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
# Assign an environment variable that we can use throughout the workflow for the version
1010
# of SPS that we are tagging
1111
env:
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

@@ -20,9 +20,6 @@ jobs:
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"

0 commit comments

Comments
 (0)