Escape json blob in context job (#22381)

* Escape json blob in context job

* TMP: escape context blob in release.yml
This commit is contained in:
Kevin Meinhardt 2024-06-19 18:02:57 +02:00 коммит произвёл GitHub
Родитель 06c963fc20
Коммит 3e95b58854
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

2
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -55,7 +55,7 @@ jobs:
- name: Log context - name: Log context
shell: bash shell: bash
run: | run: |
cat <<EOF cat <<'EOF'
${{ toJSON(github) }} ${{ toJSON(github) }}
EOF EOF
- name: Set context - name: Set context

2
.github/workflows/release.yml поставляемый
Просмотреть файл

@ -24,7 +24,7 @@ jobs:
- id: context - id: context
shell: bash shell: bash
run: | run: |
cat <<EOF cat <<'EOF'
${{toJson(github)}} ${{toJson(github)}}
EOF EOF