Skip to content

Commit a7d03ad

Browse files
committed
ci: Remove debug output from release workflow
Signed-off-by: Eden Reich <eden.reich@gmail.com>
1 parent 8aa550a commit a7d03ad

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
id: semantic
4343
run: |
4444
dry_run_output=$(semantic-release --dry-run 2>&1 || true)
45-
echo "Dry run output: $dry_run_output"
4645
4746
# Check if there are no changes
4847
if $(echo "$dry_run_output" | grep -q "no new version is released"); then
@@ -65,22 +64,12 @@ jobs:
6564
CI: true
6665
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6766

68-
- name: Debug Output
69-
run: |
70-
echo "New Release Version: ${{ steps.semantic.outputs.new_release_version }}"
71-
echo "New Release Published: ${{ steps.semantic.outputs.new_release_published }}"
72-
7367
publish:
7468
needs: github_release
7569
runs-on: ubuntu-24.04
7670
if: needs.github_release.outputs.new_release_published == 'true'
7771
name: Publish
7872
steps:
79-
- name: Debug Condition
80-
run: |
81-
echo "new_release_published value: ${{ needs.github_release.outputs.new_release_published }}"
82-
echo "new_release_version value: ${{ needs.github_release.outputs.new_release_version }}"
83-
8473
- uses: actions/checkout@v4
8574
with:
8675
ref: main

0 commit comments

Comments
 (0)