-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (34 loc) · 1.07 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Trigger Web Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
trigger-deploy:
runs-on: ubuntu-latest
env:
PR_TITLE: ${{ github.event.pull_request.title || '' }}
COMMIT_MESSAGE: ${{ github.event.head_commit.message || '' }}
FINAL_TITLE: ${{ github.event.pull_request.title || github.event.head_commit.message }}
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Trigger Deploy
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GIT_ACCESS_TOKEN }}
repository: team-b1nd/web-deploy-config
event-type: trigger-deploy
client-payload: |
{
"repo_name": "${{ github.repository }}",
"branch": "${{ github.ref }}",
"source_directory": "./build",
"project_name": "dodam",
"destination_directory": "",
"config_secret": "${{ secrets.CONFIG_JSON }}",
"title": "${{ env.FINAL_TITLE }}"
}