Skip to content

Commit

Permalink
Updated and tested Deployment notes and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jezzsantos committed Jan 11, 2025
1 parent 98bbbf4 commit dc52188
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 90 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install NodeJs
uses: actions/setup-node@v4
with:
node-version: ${{NODEJS_VERSION}}
node-version: ${{env.NODEJS_VERSION}}
- name: Restore dependencies
run: dotnet restore "${{env.SOLUTION_PATH}}"
- name: Build (Backend) for Azure Testing
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install NodeJs
uses: actions/setup-node@v4
with:
node-version: ${{NODEJS_VERSION}}
node-version: ${{env.NODEJS_VERSION}}
- name: Restore dependencies
run: dotnet restore "${{env.SOLUTION_PATH}}"
- name: Build for CI Testing (for Azure)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install NodeJs
uses: actions/setup-node@v4
with:
node-version: ${{NODEJS_VERSION}}
node-version: ${{env.NODEJS_VERSION}}
- name: Restore dependencies
run: dotnet restore "${{env.SOLUTION_PATH}}"
- name: Build Custom GitHub Actions
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Deploy ApiHost1
uses: azure/webapps-deploy@v3
with:
app-name: "${{ vars.DEPLOY_APIHOST1_APP_NAME }}"
app-name: "${{ vars.DEPLOY_AZURE_APIHOST1_APP_NAME }}"
package: ./ApiHost1

- name: Download WebsiteHost Artifacts
Expand All @@ -108,7 +108,7 @@ jobs:
- name: Deploy WebsiteHost
uses: azure/webapps-deploy@v3
with:
app-name: "${{ vars.DEPLOY_WEBSITEHOST_APP_NAME }}"
app-name: "${{ vars.DEPLOY_AZURE_WEBSITEHOST_APP_NAME }}"
package: ./WebsiteHost

- name: Download AzureFunctions.Api.WorkerHost Artifacts
Expand All @@ -119,7 +119,7 @@ jobs:
- name: Deploy AzureFunctions.Api.WorkerHost
uses: azure/webapps-deploy@v3
with:
app-name: "${{ vars.DEPLOY_AZUREFUNCTIONS_APP_NAME }}"
app-name: "${{ vars.DEPLOY_AZURE_AZUREFUNCTIONS_APP_NAME }}"
package: ./AzureFunctions.Api.WorkerHost

- name: logout
Expand Down
Loading

0 comments on commit dc52188

Please sign in to comment.