-
Notifications
You must be signed in to change notification settings - Fork 3
124 lines (108 loc) · 3.72 KB
/
publish.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: build-publish-release
on:
push:
tags:
- 'v*.*.*'
jobs:
publish-node-packages:
runs-on: ubuntu-latest
permissions:
contents: write
packages: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc
echo "@baselime:registry=https://npm.pkg.github.com/" >> .npmrc
- name: Build the package
continue-on-error: false
run:
npm ci &&
npm run build
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: eu-west-1
role-to-assume: arn:aws:iam::097948374213:role/github-actions-deploy
- name: Deploy Layer
run: STAGE=prod AWS_REGION=eu-west-1 npm run deploy
create-release:
needs: [publish-node-packages]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Set current date
run: |
echo "RELEASE_DATE=$(date +"%d %B %Y")" >> $GITHUB_ENV
- name: Get version from tag
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
- name: Get Changelog Entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
validation_level: none
version: ${{ steps.tag_name.outputs.current_version }}
path: ./CHANGELOG.md
- name: Compute checksums
run: |
echo "## ${{ env.RELEASE_VERSION }} (${{ env.RELEASE_DATE }})" >> checksums.md
echo "${{ steps.changelog_reader.outputs.changes }}" >> checksums.md
echo "" >> checksums.md
echo "" >> checksums.md
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
body_path: checksums.md
files: |
LICENSE
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
notify-community:
needs: [create-release]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get version from tag
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
- name: Post to the community Slack channel
uses: slackapi/[email protected]
with:
channel-id: 'C04KT9JNRHS'
payload: |
{
"text": "[Release] Baselime Opentelemetry for Node.JS Lambda v${{ steps.tag_name.outputs.current_version }}",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*[Release] Baselime Opentelemetry for Node.JS Lambda v${{ steps.tag_name.outputs.current_version }}*"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://github.com/Baselime/lambda-node-opentelemetry/releases/tag/v${{ steps.tag_name.outputs.current_version }}|https://github.com/Baselime/lambda-node-opentelemetry/releases/tag/v${{ steps.tag_name.outputs.current_version }}>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}