]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
github: avoid bash escaping 8522/head
authorPhilippe Antoine <pantoine@oisf.net>
Thu, 2 Feb 2023 21:32:57 +0000 (22:32 +0100)
committerVictor Julien <vjulien@oisf.net>
Tue, 7 Feb 2023 14:31:46 +0000 (15:31 +0100)
so as to allow ' in github discussion and get CI green

.github/workflows/builds.yml

index 9c54e07868ec73eabe60ffeced622c262ef12932..c7f658d596d1e5c7767f41a5caa2744535b817f4 100644 (file)
@@ -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: