Trigger demo deployment on release
This commit is contained in:
parent
602c1c03b5
commit
33997fc8e1
1 changed files with 19 additions and 0 deletions
19
.github/workflows/deploy-demo.yml
vendored
Normal file
19
.github/workflows/deploy-demo.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
name: Deploy Demo Server
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
release:
|
||||||
|
types: [released]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
trigger:
|
||||||
|
name: Trigger Demo Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Repository Dispatch
|
||||||
|
uses: peter-evans/repository-dispatch@v2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.POLARIS_DEMO_ACCESS_TOKEN }}
|
||||||
|
repository: agersant/polaris-demo
|
||||||
|
event-type: polaris-release
|
Loading…
Add table
Reference in a new issue