Skip to content

Commit

Permalink
ci: Remove debug output from release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Eden Reich <[email protected]>
  • Loading branch information
edenreich committed Jan 21, 2025
1 parent 8aa550a commit a7d03ad
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
id: semantic
run: |
dry_run_output=$(semantic-release --dry-run 2>&1 || true)
echo "Dry run output: $dry_run_output"
# Check if there are no changes
if $(echo "$dry_run_output" | grep -q "no new version is released"); then
Expand All @@ -65,22 +64,12 @@ jobs:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Debug Output
run: |
echo "New Release Version: ${{ steps.semantic.outputs.new_release_version }}"
echo "New Release Published: ${{ steps.semantic.outputs.new_release_published }}"
publish:
needs: github_release
runs-on: ubuntu-24.04
if: needs.github_release.outputs.new_release_published == 'true'
name: Publish
steps:
- name: Debug Condition
run: |
echo "new_release_published value: ${{ needs.github_release.outputs.new_release_published }}"
echo "new_release_version value: ${{ needs.github_release.outputs.new_release_version }}"
- uses: actions/checkout@v4
with:
ref: main
Expand Down

0 comments on commit a7d03ad

Please sign in to comment.