-
Notifications
You must be signed in to change notification settings - Fork 22
70 lines (64 loc) · 1.81 KB
/
npm-publish-github-packages.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
# CI/CD Pipeline for Build, Test, Package, and Publish
name: Build-Test-Package-Publish
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm install http-server -g
- run: |
http-server ./ -p 8080 &
sleep 5 # Wait for 5 seconds to ensure http-server is up
npm run test:browser
package:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm install uglifyjs -g
- run: npm run publish
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: servicestack-client
path: |
./dist/index.js
./dist/index.d.ts
./dist/servicestack-client.mjs
./dist/servicestack-client.min.js
./dist/servicestack-client.min.mjs
./dist/servicestack-client.umd.js
publish:
needs: package
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- run: npm ci
- name: Bump version
run: |
VERSION=$(jq -r '.version' package.json)
HASH=$(git rev-parse --short HEAD)
NEW_VERSION="$VERSION-preview-$HASH"
jq --arg nv "$NEW_VERSION" '.version=$nv' package.json > "tmp.json" && mv "tmp.json" "package.json"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}