Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveKeehl committed Apr 7, 2024
1 parent c8ab22f commit c48e47e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ jobs:
version: ${{ env.OLD_VERSION }}
compare-to: ${{ env.NEW_VERSION }}

- run: |
echo "${{ steps.version.outputs.release }}"
echo "${{ steps.version.outputs.comparison-result }}"
- name: Check for new version
if: ${{ steps.version.outputs.comparison-result != '>' }}
if: ${{ steps.version.outputs.comparison-result != '<' }}
uses: actions/github-script@v3
with:
script: |
Expand Down

0 comments on commit c48e47e

Please sign in to comment.