Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to correct path from www to static #3328

Merged
merged 2 commits into from
Jun 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd-www-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
AZURE_WEBAPP_ACTIVE_STAGE_NAME: www-west-app
AZURE_WEBAPP_PASSIVE_STAGE_NAME: www-east-app
AZURE_WEBAPP_BUILD_PATH: sites/website
AZURE_WEBAPP_DIST_PATH: sites/website/www
AZURE_WEBAPP_DIST_PATH: sites/website/static
AZURE_WEBAPP_SLOT_NAME: stage

steps:
Expand All @@ -30,7 +30,7 @@ jobs:
cd ${{ env.AZURE_WEBAPP_BUILD_PATH }}
npm i
yarn build
cp ../site-utilities/statics/server/package.json ../site-utilities/statics/server/server.js www
cp ../site-utilities/statics/server/package.json ../site-utilities/statics/server/server.js static
cd static
npm i
ls -lta
Expand Down