-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (60 loc) · 1.65 KB
/
deploy_components.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
name: Deploy schematic-components
on:
push:
tags:
- 'schematic-components@*'
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Yarn install
working-directory: ./components
run: yarn install
- name: Lint
working-directory: ./components
run: yarn lint
publish:
name: NPM Publish
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
needs: [lint]
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Yarn install
working-directory: ./components
run: yarn install
- name: Build
working-directory: ./components
run: yarn build
- name: Set up .npmrc
run: touch .npmrc && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./components
- name: Test .npmrc
run: cat .npmrc
working-directory: ./components
- run: yarn publish --access public
working-directory: ./components
notify_slack:
name: Notify Slack
runs-on: ubuntu-latest
needs: [publish]
steps:
- uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: Updated schematic-components
SLACK_ICON: https://schematic-public-assets.s3.amazonaws.com/logos/logo-transparent.png