-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) 路 2.09 KB
/
Copy pathci.yaml
File metadata and controls
66 lines (63 loc) 路 2.09 KB
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
name: geometry.ts CI
on:
push:
branches: [release, dev]
pull_request:
branches: [dev]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3'
with:
node-version: 18
- name: Install dependencies
run: |
npm i
- name: Build library
run: |
npm run build
- name: Test library
run: |
npm run test
tag-and-release:
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'release')
needs: build-and-test
steps:
- uses: actions/checkout@v3
- name: 'Setup Node.js'
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: 18
- name: Install dependencies
run: |
npm i
- name: 'Get release version'
run: |
CURRENT_VERSION=$(node -p "require('./package.json').version")
echo "Current version: $CURRENT_VERSION"
echo "CURRENT_VERSION=v$CURRENT_VERSION" >> $GITHUB_ENV
- name: Build library
run: |
npm run build
- name: Create Release ZIP file
run: |
zip -r geometry.zip dist
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ env.CURRENT_VERSION }}
- uses: ncipollo/release-action@v1
with:
artifacts: 'geometry.zip'
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ env.CURRENT_VERSION }}
- name: Publish to NPM
run: |
npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}