Skip to content

Commit

Permalink
specifying package in workflow -- realizing that the system is portin…
Browse files Browse the repository at this point in the history
…g over the zip file AND the unzipped contents.
  • Loading branch information
siddheshraze committed Feb 23, 2024
1 parent 2ecc515 commit cab650e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: zip -r release.zip ./frontend/*

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: node-app
path: release.zip
Expand All @@ -70,7 +70,7 @@ jobs:

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: node-app

Expand All @@ -84,4 +84,4 @@ jobs:
app-name: 'forestgeo-livesite'
slot-name: 'development'
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
package: .
package: frontend/

0 comments on commit cab650e

Please sign in to comment.