Add environment #26
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: | |
- main | |
- chore/seed | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: | |
name: 'production' | |
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' | |
run: npm ci | |
- name: 'π npm build' | |
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: 'π Prepare' | |
run: az storage file download --share-name import --path survey.csv --account-name $AZURE_STORAGE_ACCOUNT --account-key $AZURE_STORAGE_KEY --dest .next/import/survey.csv | |
env: | |
AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT }} | |
AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_KEY }} | |
- name: 'π¦ Package artifact' | |
# `./*`: 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' | |
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' | |
uses: actions/download-artifact@v4 | |
with: | |
name: node-app | |
- name: 'π€ Unzip artifact' | |
run: unzip release.zip | |
- name: 'π Deploy' | |
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 }} |