1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/.github/workflows/deploy-qa.yml

23 lines
506 B
YAML
Raw Normal View History

2023-10-20 21:34:38 +13:00
name: Deploy QA
on:
push:
branches:
2023-10-20 21:42:45 +13:00
- master
2023-10-20 21:34:38 +13:00
workflow_dispatch:
jobs:
trigger-deploy-to-qa-env:
runs-on: ubuntu-latest
steps:
2023-10-20 21:37:22 +13:00
- uses: peter-evans/repository-dispatch@v2
2023-10-20 21:34:38 +13:00
with:
repository: budibase/budibase-deploys
2023-10-20 23:38:52 +13:00
event-type: budicloud-qa-deploy
2023-10-20 21:37:22 +13:00
token: ${{ secrets.GH_ACCESS_TOKEN }}
2023-11-02 23:52:18 +13:00
client-payload: |-
{
2023-11-03 22:20:26 +13:00
"VERSION": "${{ github.sha }}",
2023-11-02 23:52:18 +13:00
"REF_NAME": "${{ github.ref_name}}"
}