Skip to content

Commit

Permalink
chore: echo env before commands
Browse files Browse the repository at this point in the history
  • Loading branch information
dantetemplar committed Aug 12, 2024
1 parent 01f451f commit 2bcbad2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/listen-swagger-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
updated: ${{ steps.check.outputs.updated }}
version: ${{ steps.check.outputs.version }}
run: |
if [ "$updated" == "true" ]; then
echo "Updated: $updated"
echo "Version: $version"
if [ "$updated" == true ]; then
echo "New Swagger UI version: $version"
git config --global user.email "[email protected]"
git config --global user.name "Automated Swagger UI update"
Expand Down

0 comments on commit 2bcbad2

Please sign in to comment.