9.5.0 #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Azure SWA (int) | |
on: | |
push: | |
branches: | |
- int | |
jobs: | |
build_and_deploy_job: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
environment: | |
name: int | |
url: https://int.jimm.my | |
name: Build and Deploy (int) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
lfs: false | |
- name: Setup Node v18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build SWA | |
run: npm run build | |
- name: Deploy (skip build) | |
id: builddeploy | |
uses: Azure/static-web-apps-deploy@v1 | |
with: | |
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_YELLOW_SAND_079050310 }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) | |
action: "upload" | |
###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### | |
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig | |
app_location: "build" # App source code path | |
api_location: "" # Api source code path - optional | |
###### End of Repository/Build Configurations ###### | |
###### WORKAROUND Node 18 unsupported by Oryx: Build separately using NodeTool@0 and Npm@1; skip build & use external build in Azure SWA Deploy ###### | |
skip_api_build: true | |
skip_app_build: true | |
is_static_export: true | |
###### End of WORKAROUND Node 18 unsupported by Oryx ###### |