-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
13 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 |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
event-type: edge-build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- | ||
name: Dispatch Skaha Release Build | ||
name: Skaha Release Build Info | ||
# Run this step only if the release-please completes successfully | ||
if: ${{ steps.release-please.outputs.release_created == 'true' }} | ||
run: | | ||
|
@@ -44,15 +44,16 @@ jobs: | |
echo "major: ${{ steps.release-please.outputs.major }}" | ||
echo "minor: ${{ steps.release-please.outputs.minor }}" | ||
echo "patch: ${{ steps.release-please.outputs.patch }}" | ||
# uses: peter-evans/[email protected] | ||
# with: | ||
# repository: opencadc/science-platform | ||
# event-type: release-build | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
# client-payload: |- | ||
# { | ||
# "releases_created": "${{ steps.release-please.outputs.releases_created }}", | ||
# "tag_name": "${{ steps.release-please.outputs.tag_name }}", | ||
# "sha": "${{ steps.release-please.outputs.sha }}" | ||
# } | ||
- | ||
name: Dispatch Skaha Release Build | ||
uses: peter-evans/[email protected] | ||
with: | ||
repository: opencadc/science-platform | ||
event-type: release-build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
client-payload: |- | ||
{ | ||
"releases_created": "${{ steps.release-please.outputs.release_created }}", | ||
"tag_name": "${{ steps.release-please.outputs.tag_name }}", | ||
"sha": "${{ steps.release-please.outputs.sha }}" | ||
} |