Skip to content

Commit

Permalink
fix(gha): release action debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shinybrar committed Nov 20, 2024
1 parent 71fe530 commit 85af615
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/cd.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,19 @@ jobs:
repository: opencadc/science-platform
event-type: edge-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 }}"
}
-
name: Dispatch Skaha Release Build
# Run this step only if the release-please completes successfully
if: ${{ steps.release-please.outputs.release_created == 'true' }}
run: |
echo "Release Build currently Disabled"
echo "Releases Created: ${{ steps.release-please.outputs.release_created }}"
echo "tag: ${{ steps.release-please.outputs.tag_name }}"
echo "sha: ${{ steps.release-please.outputs.sha }}"
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
Expand All @@ -58,11 +59,3 @@ jobs:
# "tag_name": "${{ steps.release-please.outputs.tag_name }}",
# "sha": "${{ steps.release-please.outputs.sha }}"
# }
release-debug:
runs-on: ubuntu-latest
needs: release-please
steps:
- env:
RELEASE_PLEASE_OUTPUT: ${{ needs.release-please.outputs.release-please-output }}
run: |
echo "Release Please Output: $RELEASE_PLEASE_OUTPUT"

0 comments on commit 85af615

Please sign in to comment.