21 lines
453 B
YAML
21 lines
453 B
YAML
name: Deploy QA
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
trigger-deploy-to-qa-env:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: peter-evans/repository-dispatch@v2
|
|
env:
|
|
PAYLOAD_VERSION: ${{ github.sha }}
|
|
REF_NAME: ${{ github.ref_name}}
|
|
with:
|
|
repository: budibase/budibase-deploys
|
|
event-type: budicloud-qa-deploy
|
|
token: ${{ secrets.GH_ACCESS_TOKEN }}
|