-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1154 from clearlydefined/elr/ops-v1.1.1.rc1-testing
update deploy scripts to v2.0.0
- Loading branch information
Showing
1 changed file
with
16 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,23 @@ on: | |
branches: [master] | ||
|
||
jobs: | ||
upload-package-lock-json: | ||
name: Upload package-lock.json from this repo | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Upload package-lock.json | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: package-lock.json | ||
path: package-lock.json | ||
|
||
build-and-deploy: | ||
uses: clearlydefined/operations/.github/workflows/[email protected] | ||
name: Build and Deploy | ||
needs: upload-package-lock-json | ||
uses: clearlydefined/operations/.github/workflows/[email protected] | ||
secrets: | ||
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }} | ||
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_DEV }} | ||
|