Skip to content

Commit

Permalink
Refactor echo command formatting in release workflow
Browse files Browse the repository at this point in the history
Changed the format of the echo command in the release workflow file for better readability. This minor change ensures the script display is consistent and clear, following best practices for multi-line commands.
  • Loading branch information
SquirrelDevelopper committed Nov 2, 2024
1 parent 3d268e8 commit 6c8d7a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/create-release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
echo "version=$VERSION" >> $GITHUB_ENV
- name: Print version
run: echo "Version to be used: ${{ env.version }}"
run: |
echo "Version to be used: ${{ env.version }}"
- name: Clean up and create package
run: |
Expand Down

0 comments on commit 6c8d7a7

Please sign in to comment.