-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (72 loc) · 1.98 KB
/
Copy pathci-cd.yml
File metadata and controls
87 lines (72 loc) · 1.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
working-directory: sdk/cli
- name: Build
run: npm run build
working-directory: sdk/cli
- name: MCP smoke
run: npm run mcp:smoke
working-directory: sdk/cli
publish-npm:
name: Publish npm
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, 'bump version')
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Publish to npm
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
npm publish --access public --tag beta
working-directory: sdk/cli
docker:
name: Build & Push Docker
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./sdk/cli
file: ./sdk/cli/Dockerfile
push: true
tags: |
beyondnetperu/evolith-cli:latest
beyondnetperu/evolith-cli:${{ github.sha }}