Skip to content

Commit

Permalink
debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
proton committed Nov 27, 2023
1 parent d5c8040 commit 5526372
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,28 @@ jobs:
echo "version_exists=false" >> $GITHUB_OUTPUT
fi
- name: Debug
run: |
cat $GITHUB_OUTPUT
debug:
runs-on: ubuntu-latest
needs: check_tag

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Debug1
run: |
cat $GITHUB_OUTPUT
- name: Debug2
run: |
echo "Version exists: ${{ needs.check_tag.outputs.version_exists }}"
echo "Version1: ${{ needs.check_tag.outputs.version }}"
echo "Version2: ${{ steps.extract_version.outputs.version }}"
tag_and_release:
runs-on: ubuntu-latest
needs: check_tag
Expand Down

0 comments on commit 5526372

Please sign in to comment.