Skip to content

Commit

Permalink
Remove zip and unzip steps in deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
samanthathompson52 committed Dec 13, 2023
1 parent c735d9f commit a6671d1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/azure-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,11 @@ jobs:
npm ci
npm run build
- name: Zip artifact for deployment
run: zip release.zip ./server/build/* -r

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
name: node-app
path: release.zip
path: ./server

deploy:
runs-on: ubuntu-latest
Expand All @@ -46,9 +43,6 @@ jobs:
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
Expand Down

0 comments on commit a6671d1

Please sign in to comment.