-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (67 loc) · 2.26 KB
/
release.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
name: "Release & Publish"
on:
workflow_dispatch:
push:
branches:
- main
env:
NODE_VERSION: "18"
permissions:
contents: write
pull-requests: write
packages: write
jobs:
Build-and-Release:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: npm
registry-url: https://npm.pkg.github.com/
- name: Cache dependencies
id: cache
uses: actions/cache@v4
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- name: Configure Github registry
run: |
npm config set @deven-org:registry=https://npm.pkg.github.com/
npm config set //npm.pkg.github.com/:_authToken=${{ secrets.TOKEN_GITHUB }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Create new release
uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: "@deven-org/documentation-skeleton"
token: ${{secrets.GITHUB_TOKEN}}
- name: NPM Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
if: ${{ steps.release.outputs.release_created }}
- name: Notify new release to Slack
id: slack
uses: slackapi/[email protected]
with:
payload: |
{
"package": "@deven-org/telemetry-functions",
"status": "${{ job.status }}",
"head_commit": "${{github.event.head_commit.url }}",
"pr_url": "${{ github.event.pull_request.html_url || github.event.head_commit.url }}",
"release_created": "${{ steps.release.outputs.release_created }}",
"major": "${{ steps.release.outputs.major }}",
"minor": "${{ steps.release.outputs.minor }}",
"patch": "${{ steps.release.outputs.patch }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: ${{ steps.release.outputs.release_created }}