-
Notifications
You must be signed in to change notification settings - Fork 60
109 lines (96 loc) · 3.32 KB
/
prerelease.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Build & Publish Raygun4JS to the pre-release environment
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Grunt
run: npm install -g grunt
- name: Install node modules
run: npm install
- name: Build
id: build_step
run: grunt build
- name: Complete
run: echo Build successfully completed!
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_ID }}
aws-secret-access-key: ${{ secrets.AWS_ACCESS_SECRET }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Publish to S3 Pre-release
id: publish_s3
run: aws s3 sync ./dist ${{ secrets.AWS_PUBLISH_TARGET }}
- name: Deployment Complete
run: echo A new version of Raygun4JS has been deployed to pre-release! The Cloudfront cache will need to be invalidated for changes to take effect immediately.
- name: Notify Slack
id: slack
uses: slackapi/[email protected]
with:
payload: |
{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "A new pre-release version of Raygun4JS has been published"
}
},
{
"type": "section",
"text": {
"type": "plain_text",
"text": "The Cloudfront cache will need to be invalidated for changes to take effect immediately."
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|View this action run in GitHub>"
}
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Details"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Branch:*\n`${{ github.ref_name }}`"
},
{
"type": "mrkdwn",
"text": "*Node version:*\n`${{ matrix.node-version }}`"
},
{
"type": "mrkdwn",
"text": "*Build status:*\n${{ steps.build_step.outcome }}"
},
{
"type": "mrkdwn",
"text": "S3 sync status:*\n${{ steps.publish_s3.outcome }}"
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK