Skip to content

fix: environment variables dont interpolate with single quotes #16

fix: environment variables dont interpolate with single quotes

fix: environment variables dont interpolate with single quotes #16

on:
push:
branches:
- main
- firecracker-v*
jobs:
trigger_ab_test:
runs-on: ubuntu-latest
if: ${{ github.event.forced == false }}
steps:
- name: "Trigger Buildkite Pipeline"
run: |
curl -X POST https://api.buildkite.com/v2/organizations/firecracker/pipelines/performance-a-b-tests/builds \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ${{ secrets.BUILDKITE_TOKEN }}' \
-d "{
\"commit\": \"HEAD\",
\"branch\": \"$GITHUB_REF_NAME\",
\"env\": {
\"REVISION_A\": \"${{ github.event.before }}\",
\"REVISION_B\": \"${{ github.event.after }}\"
}
}"