From 4b5a054d62e8aacd7201e79749e12dd6b1682912 Mon Sep 17 00:00:00 2001 From: jojozhuang Date: Sat, 8 Nov 2025 10:14:41 -0800 Subject: [PATCH 1/3] Fix the deployment to text-compare on azure --- .github/workflows/main_text-compare.yml | 112 ++++++++++++----------- .github/workflows/main_text-compare2.yml | 111 +++++++++++----------- 2 files changed, 113 insertions(+), 110 deletions(-) diff --git a/.github/workflows/main_text-compare.yml b/.github/workflows/main_text-compare.yml index 7c58d1c8..db155b22 100644 --- a/.github/workflows/main_text-compare.yml +++ b/.github/workflows/main_text-compare.yml @@ -1,55 +1,57 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions - -name: Build and deploy Node.js app to Azure Web App - text-compare - -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - build: - runs-on: windows-latest - permissions: - contents: read #This is required for actions/checkout - - steps: - - uses: actions/checkout@v4 - - - name: Set up Node.js version - uses: actions/setup-node@v3 - with: - node-version: '4.8' - - - name: npm install, build, and test - run: | - npm install - npm run build --if-present - npm run test --if-present - - - name: Upload artifact for deployment job - uses: actions/upload-artifact@v4 - with: - name: node-app - path: . - - deploy: - runs-on: ubuntu-latest - needs: build - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v4 - with: - name: node-app - - - name: 'Deploy to Azure Web App' - uses: azure/webapps-deploy@v3 - id: deploy-to-webapp - with: - app-name: 'text-compare' - slot-name: 'Production' - package: . - publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_4F4C478D91D44F8BBEF8951570103698 }} \ No newline at end of file +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions +# Windows Server + +name: Build and deploy Node.js app to Azure Web App - text-compare + +on: + push: + branches: + - fix-deployment-to-text-compare + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + permissions: + contents: read #This is required for actions/checkout + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node.js version + uses: actions/setup-node@v3 + with: + node-version: '4.8' + + - name: npm install, build, and test + run: | + npm install + npm run build:azure + npm run test:headless + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v4 + with: + name: node-app + path: ./dist/browser + + deploy: + runs-on: ubuntu-latest + needs: build + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v4 + with: + name: node-app + + - name: 'Deploy to Azure Web App' + id: deploy-to-webapp + uses: azure/webapps-deploy@v3 + with: + app-name: 'text-compare' + slot-name: 'Production' + package: . + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_4F4C478D91D44F8BBEF8951570103698 }} + clean: true \ No newline at end of file diff --git a/.github/workflows/main_text-compare2.yml b/.github/workflows/main_text-compare2.yml index 45544b6b..ea6ab10a 100644 --- a/.github/workflows/main_text-compare2.yml +++ b/.github/workflows/main_text-compare2.yml @@ -1,56 +1,57 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions - -name: Build and deploy Node.js app to Azure Web App - text-compare2 - -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read #This is required for actions/checkout - - steps: - - uses: actions/checkout@v4 - - - name: Set up Node.js version - uses: actions/setup-node@v3 - with: - node-version: '22.x' - - - name: npm install, build, and test - run: | - npm install - npm run build:azure - npm run test:headless - - - name: Upload artifact for deployment job - uses: actions/upload-artifact@v4 - with: - name: node-app - path: ./dist/browser - - deploy: - runs-on: ubuntu-latest - needs: build - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v4 - with: - name: node-app - - - name: 'Deploy to Azure Web App' - id: deploy-to-webapp - uses: azure/webapps-deploy@v3 - with: - app-name: 'text-compare2' - slot-name: 'Production' - package: . - publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_23137CCA3349499E9B3DCC0705F4C348 }} +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions +# Linux Server + +name: Build and deploy Node.js app to Azure Web App - text-compare2 + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read #This is required for actions/checkout + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node.js version + uses: actions/setup-node@v3 + with: + node-version: '22.x' + + - name: npm install, build, and test + run: | + npm install + npm run build:azure + npm run test:headless + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v4 + with: + name: node-app + path: ./dist/browser + + deploy: + runs-on: ubuntu-latest + needs: build + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v4 + with: + name: node-app + + - name: 'Deploy to Azure Web App' + id: deploy-to-webapp + uses: azure/webapps-deploy@v3 + with: + app-name: 'text-compare2' + slot-name: 'Production' + package: . + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_23137CCA3349499E9B3DCC0705F4C348 }} clean: true \ No newline at end of file From d02459d15bab6707b2df04a76cb783d74f0dffdc Mon Sep 17 00:00:00 2001 From: jojozhuang Date: Sat, 8 Nov 2025 10:17:42 -0800 Subject: [PATCH 2/3] update node version to 22 --- .github/workflows/main_text-compare.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main_text-compare.yml b/.github/workflows/main_text-compare.yml index db155b22..948f4f12 100644 --- a/.github/workflows/main_text-compare.yml +++ b/.github/workflows/main_text-compare.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Node.js version uses: actions/setup-node@v3 with: - node-version: '4.8' + node-version: '22.x' - name: npm install, build, and test run: | From 1f8b1b0c740340ae2c3b0b207d4c799d04d8dd9c Mon Sep 17 00:00:00 2001 From: jojozhuang Date: Sat, 8 Nov 2025 10:34:52 -0800 Subject: [PATCH 3/3] revert to main --- .github/workflows/main_text-compare.yml | 4 ++-- .github/workflows/main_text-compare2.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main_text-compare.yml b/.github/workflows/main_text-compare.yml index 948f4f12..f6d0d280 100644 --- a/.github/workflows/main_text-compare.yml +++ b/.github/workflows/main_text-compare.yml @@ -2,12 +2,12 @@ # More GitHub Actions for Azure: https://github.com/Azure/actions # Windows Server -name: Build and deploy Node.js app to Azure Web App - text-compare +name: Deploy to Azure text-compare on: push: branches: - - fix-deployment-to-text-compare + - main workflow_dispatch: jobs: diff --git a/.github/workflows/main_text-compare2.yml b/.github/workflows/main_text-compare2.yml index ea6ab10a..4703d62f 100644 --- a/.github/workflows/main_text-compare2.yml +++ b/.github/workflows/main_text-compare2.yml @@ -2,7 +2,7 @@ # More GitHub Actions for Azure: https://github.com/Azure/actions # Linux Server -name: Build and deploy Node.js app to Azure Web App - text-compare2 +name: Deploy to Azure text-compare2 on: push: