github: avoid bash escaping

so as to allow ' in github discussion and get CI green
pull/8522/head
Philippe Antoine 3 years ago committed by Victor Julien
parent 977c5ea719
commit 96b48d7104

@ -39,7 +39,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Dumping github context for debugging - 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 - run: sudo apt update && sudo apt -y install jq curl
- name: Parse repo and branch information - name: Parse repo and branch information
env: env:

Loading…
Cancel
Save