Skip to content

Commit 9be9daf

Browse files
authored
Fixes (#128)
1 parent f3c7767 commit 9be9daf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Deploy to Development
2525
uses: Azure/static-web-apps-deploy@v1
2626
with:
27-
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_DEV_API_TOKEN }}
27+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
2828
repo_token: ${{ secrets.GITHUB_TOKEN }}
2929
output_location: ${{ env.OUTPUT_LOCATION }}
3030
app_location: ${{ env.APP_LOCATION }}

.github/workflows/deploy-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Deploy Documentation to Production
8080
uses: Azure/static-web-apps-deploy@v1
8181
with:
82-
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_PROD_API_TOKEN }}
82+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
8383
repo_token: ${{ secrets.GITHUB_TOKEN }}
8484
output_location: ${{ env.OUTPUT_LOCATION }}
8585
app_location: ${{ env.APP_LOCATION }}
@@ -88,6 +88,6 @@ jobs:
8888
skip_api_build: true
8989
deployment_environment: 'release'
9090
env:
91-
CUSTOM_BUILD_COMMAND: corepack enable && corepack prepare [email protected] --activate && pnpm install --frozen-lockfile && pnpm ui build && pnpm website build
91+
CUSTOM_BUILD_COMMAND: npm i -g corepack@latest && corepack prepare && pnpm install --frozen-lockfile && pnpm ui build && pnpm website build
9292
ENABLE_NODE_MONOREPO_BUILD: true
9393
NODE_VERSION: 22

0 commit comments

Comments
 (0)