-
Notifications
You must be signed in to change notification settings - Fork 1k
119 lines (101 loc) · 3.31 KB
/
Copy pathpublish_packages.yml
File metadata and controls
119 lines (101 loc) · 3.31 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Publish Packages
on:
workflow_call:
secrets:
E2B_API_KEY:
required: true
NPM_TOKEN:
required: true
PYPI_TOKEN:
required: true
permissions:
contents: write
jobs:
test:
name: Build and test SDK
runs-on: ubuntu-22.04
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.VERSION_BUMPER_APPID }}
private-key: ${{ secrets.VERSION_BUMPER_SECRET }}
- name: Checkout Repo
uses: actions/checkout@v3
with:
token: ${{ steps.app-token.outputs.token }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- uses: pnpm/action-setup@v3
with:
version: 9.5
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: pnpm
- name: Configure pnpm
run: |
pnpm config set auto-install-peers true
pnpm config set exclude-links-from-lockfile true
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Create new versions
run: pnpm run version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release new versions
uses: changesets/action@v1
with:
publish: pnpm run publish
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
- name: Generate SDK reference
id: sdk-ref
run: pnpm run --recursive generate-ref
- name: Clone Remote Code Interpreter SDK reference
run: |
git clone --depth 1 --filter=blob:none --sparse https://github.com/e2b-dev/code-interpreter
cd code-interpreter
git sparse-checkout set sdk-reference
cp -r sdk-reference/* ../apps/web/src/app/\(docs\)/docs/sdk-reference/
cd ..
rm -rf code-interpreter
- name: Clone Remote Desktop SDK reference
run: |
git clone --depth 1 --filter=blob:none --sparse https://github.com/e2b-dev/desktop
cd desktop
git sparse-checkout set sdk-reference
cp -r sdk-reference/* ../apps/web/src/app/\(docs\)/docs/sdk-reference/
cd ..
rm -rf desktop
- name: Show docs file structure
run: |
if [ -d "./sdk-reference" ]; then
tree ./sdk-reference
else
echo "sdk-reference directory does not exist"
fi
- name: Update lock file
run: pnpm i --no-link --no-frozen-lockfile
- name: Commit new versions
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add apps/web/src/app/\(docs\)/docs/sdk-reference
git commit -am "[skip ci] Release new versions" || exit 0
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}