forked from venetoarpa/arpav-cline-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/geobeyond/Arpav-PPCV
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This workflow runs whenever an already published package gets updated, | ||
# which would happen after the respective image has been built and | ||
# pushed to the registry | ||
|
||
name: Deployment to staging environment | ||
|
||
on: | ||
|
||
registry_package: | ||
types: | ||
- published | ||
- updated | ||
|
||
concurrency: staging | ||
|
||
jobs: | ||
initiate-deployment: | ||
runs-on: ubuntu-22.04 | ||
environment: staging | ||
steps: | ||
- name: Invoke deployment hook | ||
uses: distributhor/workflow-webhook@v3 | ||
with: | ||
webhook_url: ${{ secrets.STAGING_WEBHOOK_URL }} | ||
webhook_secret: ${{ secrets.STAGING_WEBHOOK_SECRET }} | ||
webhook_type: json |
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