Skip to content

Commit 464f644

Browse files
committed
added the refinements from workflow testing and fixed comments
1 parent 0134cca commit 464f644

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tag-workflow.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ on:
66
tags:
77
- '*'
88

9-
# Assign an environment variable that we can use throughout the workflow for the version
10-
# of SPS that we are tagging
9+
# Assign an environment variable that we can use for the version of the Scalable Pixel Streaming Frontend that we are tagging
1110
env:
1211
VERSION: ${{ github.ref_name }}
1312
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
@@ -21,13 +20,14 @@ jobs:
2120
runs-on: ubuntu-latest
2221

2322
steps:
24-
23+
24+
# remove unneeded pieces from runner to free up space
2525
- name: Free up some space
2626
run: |
2727
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android
2828
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET
2929
30-
# Clone the source code on the runner
30+
# Clone the source code on the runner
3131
- name: Clone repository
3232
uses: actions/checkout@v3
3333

@@ -39,10 +39,10 @@ jobs:
3939
- name: Setup Nodejs
4040
uses: actions/setup-node@v3
4141

42-
# Build the SPS Frontend
42+
# Build the Scalable Pixel Streaming Frontend Library and Example
4343
- name: Build SPS Frontend
4444
run: |
45-
npm install
45+
cd ./examples/typescript
4646
npm run build-all
4747
4848
# Build the Scalable Pixel Streaming Frontend Docker image from the dist directories of the packages

0 commit comments

Comments
 (0)