From 0688b8adb26fd1183ba9ef48544d08c9eac96c03 Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Mon, 18 Dec 2023 20:17:03 +0100 Subject: [PATCH] chore: fix line-length Line-length of YAML was exceeded --- .github/workflows/publish_wheel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_wheel.yml b/.github/workflows/publish_wheel.yml index 01d7154f..27a07a41 100644 --- a/.github/workflows/publish_wheel.yml +++ b/.github/workflows/publish_wheel.yml @@ -40,7 +40,8 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_AUTH_TOKEN }} run: | - echo "::warning title=Missing authentication token::In order to publish an wheel package, you must set the PYPI_USERNAME and PYPI_AUTH_TOKEN secrets" + echo -n "::warning title=Missing authentication token::In order to publish an wheel package, you must set " + echo "the PYPI_USERNAME and PYPI_AUTH_TOKEN secrets" if: ${{ (env.TWINE_USERNAME == '') || (env.TWINE_PASSWORD == '') }} - name: Publish WHEEL package env: