From: Philippe Antoine Date: Thu, 2 Feb 2023 21:32:57 +0000 (+0100) Subject: github: avoid bash escaping X-Git-Tag: suricata-7.0.0-rc2~591 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96b48d71042c282a51c83607eb8e25a1bf1e4bdb;p=thirdparty%2Fsuricata.git github: avoid bash escaping so as to allow ' in github discussion and get CI green --- diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 9c54e07868..c7f658d596 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -39,7 +39,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Dumping github context for debugging - run: echo '${{ toJSON(github) }}' + run: echo $JSON + env: + JSON: ${{ toJSON(github) }} - run: sudo apt update && sudo apt -y install jq curl - name: Parse repo and branch information env: