-
Notifications
You must be signed in to change notification settings - Fork 479
248 lines (212 loc) · 7.97 KB
/
publish-package.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
name: GH Release and NPM Publish
on:
workflow_dispatch:
push:
branches:
- 'next'
paths:
- 'libraries/**'
- 'internal/**'
- 'scripts/**'
- 'package.json'
- '.github/workflows/publish-package.yml'
- 'apps/gui/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install
run: pnpm install --frozen-lockfile
- name: Build Packages
run: pnpm -r build
# - name: Build Worker Relay
# run: |
# pnpm --filter @nostrwatch/worker-relay run clean
# pnpm --filter @nostrwatch/worker-relay run tsc
# pnpm --filter @nostrwatch/worker-relay run copy:wasm
# pnpm --filter @nostrwatch/worker-relay run build:esm
# - name: Build GUI
# run: pnpm --filter @nostrwatch/gui build
- name: Check Artifact Size
run: du -sh libraries/**/dist internal/**/dist apps/gui/dist
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: built-packages
path: |
libraries/**/dist/
libraries/**/src/sqlite/sqlite3.wasm
libraries/**/package.json
internal/**/dist/
internal/**/package.json
apps/gui/dist/
apps/gui/package.json
publish:
runs-on: ubuntu-latest
needs: build
environment: ${{ matrix.package == 'gui' && 'next.nostr.watch' || 'default' }}
strategy:
fail-fast: false
matrix:
include:
- package: 'nostrings'
- package: 'nocap'
- package: 'nocap-websocket-adapter-default'
- package: 'nocap-websocket-browser-adapter-default'
- package: 'nocap-info-adapter-default'
- package: 'nocap-dns-adapter-default'
- package: 'nocap-geo-adapter-default'
- package: 'nocap-ssl-adapter-default'
- package: 'nocap-every-adapter-default'
- package: 'route66'
- package: 'route66/adapters/cache/NostrSqliteAdapter'
- package: 'route66/adapters/websocket/NostrToolsAdapter'
- package: 'memory-relay'
- package: 'gui'
- package: 'schemata'
- package: 'schemata-js-ajv'
- package: 'auditor'
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
name: built-packages
path: .
- name: Install Dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Install jq
if: matrix.package == 'gui'
run: sudo apt-get update && sudo apt-get install -y jq
- name: Get package version (GUI)
if: matrix.package == 'gui'
id: get_version
run: |
VERSION=$(jq -r '.version' ./apps/gui/package.json)
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: Prepare SSH Key
if: matrix.package == 'gui'
run: |
mkdir -p ~/.ssh
echo "${{ secrets.GUI_SSH_KEY }}" > ~/.ssh/gui_ssh_key
chmod 600 ~/.ssh/gui_ssh_key
- name: Validate Secrets
if: matrix.package == 'gui'
run: |
if [ -z "${{ secrets.GUI_HOST_USER }}" ] || [ -z "${{ secrets.GUI_HOST_IP }}" ]; then
echo "Secrets GUI_HOST_USER or GUI_HOST_IP are missing."
exit 1
else
echo "Secrets are set correctly."
fi
- name: Debug Command Construction
if: matrix.package == 'gui'
run: |
echo ssh -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no "${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }}" echo "Connection Successful"
- name: Debug SSH Command
if: matrix.package == 'gui'
run: |
echo "Testing SSH Connection..."
echo "Host User: ${{ secrets.GUI_HOST_USER }}"
echo "Host IP: ${{ secrets.GUI_HOST_IP }}"
ssh -v -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no "${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }}" echo "Connection Successful"
- name: Prepare Directories (GUI)
if: matrix.package == 'gui'
run: |
VERSION=${{ env.VERSION }}
echo "Deploying version $VERSION"
ssh -v -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no ${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }} << EOF
set -e
mkdir -p /var/www/${VERSION}
EOF
- name: Upload Build (GUI)
if: matrix.package == 'gui'
run: |
scp -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no -r ./apps/gui/dist/* ${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }}:/var/www/${{ env.VERSION }}/
- name: Update Symlink & Permissions
if: matrix.package == 'gui'
run: |
ssh -v -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no ${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }} << EOF
set -e
ln -sfn /var/www/${{ env.VERSION }} /var/www/html
chown -R caddy:www-data /var/www/html
chown -R caddy:www-data /var/www/${{ env.VERSION }}
EOF
- name: Cleanup SSH Key
if: matrix.package == 'gui'
run: |
rm -f ~/.ssh/gui_ssh_key
- name: Find Package
id: find_package
run: |
PKG_PATH=$(find libraries internal apps -type d -name "${{ matrix.package }}" -print -quit)
echo "the_path=$PKG_PATH" >> "$GITHUB_OUTPUT"
- name: Publish Package
id: publish
if: matrix.package != 'gui'
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: ${{ steps.find_package.outputs.the_path }}/package.json
strategy: all
access: public
- name: Set Meta
if: matrix.package != 'gui'
id: meta
run: |
RELEASE_SLUG="${{ matrix.package }}@v${{ steps.publish.outputs.version }}"
echo "release_slug=$RELEASE_SLUG" >> "$GITHUB_OUTPUT"
- name: Debug Directory Before Zipping
if: matrix.package != 'gui'
run: |
echo "Checking contents of: ${{ steps.find_package.outputs.the_path }}"
ls -l "${{ steps.find_package.outputs.the_path }}"
- name: Archive Subdirectory
if: matrix.package != 'gui'
id: archive
run: |
if [ -d "${{ steps.find_package.outputs.the_path }}" ]; then
cd "$(dirname "${{ steps.find_package.outputs.the_path }}")"
zip -r "${{ matrix.package }}@v${{ steps.publish.outputs.version }}.zip" "$(basename "${{ steps.find_package.outputs.the_path }}")"/*
else
echo "Directory not found: ${{ steps.find_package.outputs.the_path }}"
exit 1
fi
- name: Create Release ${{ steps.meta.outputs.release_slug }}
if: matrix.package != 'gui'
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.meta.outputs.release_slug }}
release_name: ${{ steps.meta.outputs.release_slug }}
body: ""
draft: false
prerelease: true
- name: Upload Release Asset
if: matrix.package != 'gui'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ steps.meta.outputs.release_slug }}.zip
asset_name: ${{ steps.meta.outputs.release_slug }}.zip
asset_content_type: application/zip