Skip to content

Commit 5e98adf

Browse files
authored
Merge pull request #1106 from clearlydefined/jamesiri-patch-1
Add upload-package-lock-json job to workflow
2 parents b7ce83e + 74b265b commit 5e98adf

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/build-and-deploy-prod.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,21 @@ on:
77
types: [published]
88

99
jobs:
10+
upload-package-lock-json:
11+
name: Upload package-lock.json from this repo
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v6
16+
17+
- name: Upload package-lock.json
18+
uses: actions/upload-artifact@v6
19+
with:
20+
name: package-lock.json
21+
path: package-lock.json
22+
1023
build-and-deploy-prod:
24+
needs: upload-package-lock-json
1125
uses: clearlydefined/operations/.github/workflows/app-build-and-deploy.yml@v3.2.0
1226
secrets:
1327
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}

0 commit comments

Comments
 (0)