Add fake api #15
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- chore/deploy | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- name: npm install, build, and test | |
run: | | |
npm ci | |
cp .env.example .env # an env file is needed for `build` | |
npm run db:generate | |
npm run build | |
npm ci --prod | |
rm .env | |
- name: Zip artifact for deployment | |
# `./*`: the current directory | |
# `.next`: explicitly also zip this hidden directory. | |
# `-r`: recursive | |
# `-y`: preserve symlinks | |
run: zip -y release.zip ./* .next -r | |
- name: Upload artifact for deployment job | |
uses: actions/upload-artifact@v4 | |
with: | |
name: node-app | |
path: release.zip | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: 'production' | |
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
permissions: | |
id-token: write #This is required for requesting the JWT | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v4 | |
with: | |
name: node-app | |
- name: Unzip artifact for deployment | |
run: unzip release.zip | |
- name: 'Deploy to Azure Web App' | |
id: deploy-to-webapp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'tech-survey-web' | |
slot-name: 'production' | |
package: . | |
publish-profile: ${{ secrets.AZURE_APP_SERVICE_PUBLISH_PROFILE }} |