We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8b106 commit 069333fCopy full SHA for 069333f
.github/workflows/manual.yml
@@ -62,7 +62,7 @@ jobs:
62
run: unzip release.zip
63
64
- name: Login to Azure
65
- uses: azure/login@v3
+ uses: azure/login@v2 # Fixed version
66
with:
67
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID }}
68
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID }}
@@ -93,4 +93,18 @@ jobs:
93
run: npm install
94
95
- name: Run Node.js API
96
- run: npm start
+ run: npm start
97
+
98
+ gh-pages:
99
+ runs-on: ubuntu-latest
100
+ needs: build
101
+ steps:
102
+ - name: Checkout repository
103
+ uses: actions/checkout@v4
104
105
+ - name: Deploy to GitHub Pages
106
+ uses: peaceiris/actions-gh-pages@v4
107
+ with:
108
+ github_token: ${{ secrets.GITHUB_TOKEN }}
109
+ publish_branch: gh-pages
110
+ publish_dir: . # Change if static files are in another directory
0 commit comments