Skip to content

Commit d4665ff

Browse files
committed
Fix CI
1 parent c15736a commit d4665ff

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: "16.x"
2020
registry-url: "https://registry.npmjs.org"
2121
- run: npm ci
22-
- run: npm run build-prod
22+
- run: npm run build
2323
- run: npm publish --access public
2424
env:
2525
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/tag-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Build the Scalable Pixel Streaming Frontend Library and Example
4343
- name: Build SPS Frontend
4444
run: |
45-
cd ./examples/typescript
45+
cd ./examples/typescript
4646
npm run build-all-prod
4747
4848
# Build the Scalable Pixel Streaming Frontend Docker image from the dist directories of the packages

.github/workflows/test-pull-request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
working-directory: ./library
3232
run: |
3333
npm ci
34-
npm run build-dev
34+
npm run build
3535
3636
# install deps for Library and build for production
3737
- name: Install and build library for production
@@ -45,7 +45,7 @@ jobs:
4545
working-directory: ./examples/typescript
4646
run: |
4747
npm ci
48-
npm run build-all-dev
48+
npm run build-all
4949
5050
# install deps for Frontend and Library for and build both for production
5151
- name: Install and build library and Frontend for production

0 commit comments

Comments
 (0)