Skip to content

Commit f0d2e79

Browse files
Merge pull request #15 from StreetSupport/feature/3001-set-up-sentry-error-monitoring-and-logging
Add comments to yml file
2 parents e2a94fa + e7be2fb commit f0d2e79

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/azure-deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ jobs:
4242
npm install
4343
npm run build --if-present
4444
npm run test --if-present
45-
45+
# To think about reverting this part
4646
- name: Create dedicated publish folder
4747
run: |
4848
mkdir -p publish
4949
cp -r dist publish/
5050
cp -r node_modules publish/
5151
cp package.json publish/
5252
cp package-lock.json publish/
53-
53+
# To think about reverting this part
5454
- name: Zip artifact for deployment
5555
run: (cd publish && zip -r ../release.zip .)
56-
56+
# To think about reverting this part
5757
- name: Upload artifact for deployment job
5858
uses: actions/upload-artifact@v4
5959
with:
@@ -87,5 +87,6 @@ jobs:
8787
uses: azure/webapps-deploy@v3
8888
with:
8989
app-name: ${{ vars.AZURE_APP_NAME }}
90+
# To think about reverting this part
9091
package: release.zip
9192
startup-command: 'npm start'

0 commit comments

Comments
 (0)