-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (69 loc) · 2.32 KB
/
netlify-deploy-v1.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
name: Deploy a netlify application
on:
workflow_call:
inputs:
application:
type: string
required: true
artifact:
type: string
required: true
environment:
type: string
required: true
version:
type: string
required: false
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
actions: write
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: ./build
- uses: sencrop/github-workflows/actions/find-deployed-version
id: deplyed_version
with:
environment: ${{ inputs.environment }}
from: git
- name: Notify deployment in progress
uses: sencrop/github-workflows/actions/notify-deployment-in-progress@master
with:
service: ${{ inputs.application }}
environment: ${{ inputs.environment }}
dd_api_key: ${{ secrets.DD_API_KEY }}
former_version: ${{ steps.deployed_version.outputs.version }}
new_version: ${{ inputs.version }}
slack_bot_token: ${{ secrets.SLACK_BOT_TOKEN }}
- uses: sencrop/github-workflows/actions/add-github-tag
with:
tag: ${{ inputs.environment }}
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v3
with:
publish-dir: ./build
# production-branch should not be used as production deploy are triggered on release
production-deploy: ${{ inputs.environment == "production" }}
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
netlify-config-path: "./netlify.toml"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 2
- name: Track deployment time
uses: sencrop/github-workflows/actions/track-deployment-time@master
with:
service: ${{ inputs.application }}
environment: ${{ inputs.environment }}
dd_api_key: ${{ secrets.DD_API_KEY }}