-
Notifications
You must be signed in to change notification settings - Fork 38
485 lines (429 loc) · 21.3 KB
/
Copy pathbuild.yml
File metadata and controls
485 lines (429 loc) · 21.3 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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
name: Build (Windows/Linux)
on:
pull_request:
workflow_dispatch:
env:
REGISTRY: ghcr.io/euro-office
CACHE_IMAGE_NAME: desktopeditors-build-cache
PRODUCT_VERSION: 9.3.1
BUILD_NUMBER: dev.1
BUILD_ROOT: /package
jobs:
# ─────────────────────────────────────────────────────────────
# BUILD
#
# Single job that builds the full target graph in one bake
# invocation per arch × brand. Because develop depends on
# docker which depends on packages, bake resolves the shared
# graph and never rebuilds a layer twice.
#
# Pushing per target:
# docker → pushed on default branch (:nightly) and git tags (:latest)
# develop → pushed on default branch only (:latest-dev)
# packages → never pushed; exported to local filesystem for release upload
# (euro-office → GitHub Release, nextcloud-office → SSH)
# ─────────────────────────────────────────────────────────────
build-common:
runs-on: 'ubuntu-latest'
permissions:
contents: write
packages: write
strategy:
fail-fast: false
matrix:
brand:
- name: euro-office
image_name: desktop-common
extra_bake_files: ""
extra_targets: ""
cache_prefix: ""
#- name: nextcloud-office
# image_name: no-desktop-common
# extra_bake_files: "./brands/nextcloud-office-brand/brand-server.hcl"
# extra_targets: "brand-icons,"
# cache_prefix: "nextcloud-office-"
steps:
- name: Checkout fork repository (with submodules)
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: .
submodules: recursive
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- name: Checkout nextcloud-office-brand repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: Euro-Office/nextcloud-office-brand
path: build/brands/nextcloud-office-brand
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- name: Debug workspace
run: |
echo "workspace: ${{ github.workspace }}"
ls -la "${{ github.workspace }}"
ls -la "${{ github.workspace }}/build" || echo "build/ MISSING"
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
- uses: actions/cache@v4
id: wasm-cache
with:
path: |
wasm-ccache
wasm-em-cache
key: ${{ runner.os }}-wasm-${{ hashFiles('core/**/CMakeLists.txt') }}
restore-keys: |
${{ runner.os }}-wasm-
- uses: reproducible-containers/buildkit-cache-dance@v3.4.0
with:
builder: ${{ steps.buildx.outputs.name }}
cache-map: |
{
"wasm-ccache": { "target": "/ccache", "id": "wasm-ccache" },
"wasm-em-cache": { "target": "/em-cache", "id": "wasm-em-cache" }
}
skip-extraction: ${{ steps.wasm-cache.outputs.cache-hit }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute tags and push flags
id: meta
run: |
REF_NAME=$(echo '${{ github.ref_name }}' | tr '/' '-')
echo "ref_name=${REF_NAME}" >> $GITHUB_OUTPUT
echo "sha_short=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"
# Parse PRODUCT_VERSION / BUILD_NUMBER from tag of the form v${PRODUCT_VERSION}-${BUILD_NUMBER}
# (e.g. v9.3.1-beta.1, v9.3.1-stable.1). Fall back to env defaults otherwise.
if [[ "$IS_TAG" == "true" && "${{ github.ref_name }}" =~ ^v([^-]+)-(.+)$ ]]; then
echo "product_version=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
echo "build_number=${BASH_REMATCH[2]}" >> $GITHUB_OUTPUT
else
echo "product_version=${{ env.PRODUCT_VERSION }}" >> $GITHUB_OUTPUT
echo "build_number=${{ env.BUILD_NUMBER }}" >> $GITHUB_OUTPUT
fi
- name: Build all targets (packages → docker → develop)
uses: docker/bake-action@4a9a8d494466d37134e2bfca2d3a8de8fb2681ad # v5.13.0
with:
workdir: ./build
# For nextcloud-office, brand-server.hcl is appended; empty lines are
# filtered by bake-action so euro-office sees only the base file.
files: |
./docker-bake.hcl
# extra_targets is either "" (euro-office) or "brand-icons," so the
# comma-joined target list resolves correctly for both.
targets: desktop-common
# push=false here; per-target pushing is controlled via tags below.
# Targets with empty tags= are not pushed regardless of this flag.
push: false
set: |
core-wasm.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}core-wasm-buildcache
core-wasm.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}core-wasm-buildcache,mode=max
core-wasm.tags=
sdkjs-desktop.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}sdkjs-desktop-buildcache
sdkjs-desktop.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}sdkjs-desktop-buildcache,mode=max
sdkjs-desktop.tags=
desktop-js.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-js-buildcache
desktop-js.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-js-buildcache,mode=max
desktop-js.tags=
web-apps.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}web-apps-buildcache
web-apps.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}web-apps-buildcache,mode=max
web-apps.tags=
desktop-common.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-common-buildcache
desktop-common.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-common-buildcache,mode=max
desktop-common.tags=${{format('{0}/{1}:{2}', env.REGISTRY, matrix.brand.image_name, steps.meta.outputs.sha_short)}}
desktop-common.output=type=tar,dest=./common.tar
env:
REGISTRY: ${{ env.REGISTRY }}
PRODUCT_VERSION: ${{ steps.meta.outputs.product_version }}
BUILD_NUMBER: ${{ steps.meta.outputs.build_number }}
BUILD_ROOT: ${{ env.BUILD_ROOT }}
NUGET_CACHE: local
NEXTCLOUD_USER: ${{ secrets.NEXTCLOUD_USER }}
NEXTCLOUD_PASS: ${{ secrets.NEXTCLOUD_PASS }}
- uses: actions/upload-artifact@v4
with:
name: common-files
path: ./build/common.tar # was ./build/common
compression-level: 0
crosscompile-3rdparty-arm64:
runs-on: windows-2022 # x64 host that cross-compiles to arm64
env:
PYTHONUTF8: "1"
DEPOT_TOOLS_WIN_TOOLCHAIN: "0" # V8: use the locally installed VS, not Google's toolchain
NEXTCLOUD_USER: ${{ secrets.NEXTCLOUD_USER }} # required: ensure_dep uploads here
NEXTCLOUD_PASS: ${{ secrets.NEXTCLOUD_PASS }}
steps:
- name: Checkout fork repository (with submodules)
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: .
submodules: recursive
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
# windows-2022 ships VS2022 but not always the ARM64 *target* tools.
# clang-cl (V8) links arm64 against the arm64 Windows SDK libs;
# cl.exe (OpenSSL) needs the amd64_arm64 toolset. Add both.
- name: Add ARM64 build tools to Visual Studio
shell: pwsh
run: |
$vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
$vsInstaller = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vs_installer.exe"
$installPath = & $vsWhere -latest -products * -property installationPath
& $vsInstaller modify `
--installPath $installPath `
--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 `
--add Microsoft.VisualStudio.Component.VC.ATL.ARM64 `
--add Microsoft.VisualStudio.Component.VC.MFC.ARM64 `
--quiet --norestart --force
if ($LASTEXITCODE -notin @(0, 3010)) {
Write-Warning "vs_installer returned $LASTEXITCODE - components may already be present, continuing."
}
# Sets the amd64_arm64 cross environment for all later steps, incl.
# VSCMD_ARG_TGT_ARCH=arm64 -- the single signal openssl, v8 and the
# cache tag all key off of.
- name: Set up arm64 cross MSVC environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64_arm64
# ASSUMPTION: build_3rdparty.py can be told to *target* arm64 while
# running on an x64 host. If it only builds host-arch today, that's the
# gap to close first (see notes in chat: V8 -> target_cpu="arm64";
# OpenSSL -> Configure VC-WIN64-ARM under the amd64_arm64 MSVC env).
- name: Cross-compile arm64 third-party (V8, OpenSSL)
shell: pwsh
run: |
python ${{ github.workspace }}\core\Common\3dParty\build_3rdparty.py `
--only=v8,openssl `
"${{ github.workspace }}\workdir" `
"${{ github.workspace }}\installdir"
build-windows:
runs-on: ${{ matrix.arch == 'arm64' && 'windows-11-arm' || 'windows-2022' }}
needs: [build-common, crosscompile-3rdparty-arm64]
strategy:
fail-fast: false
matrix:
arch:
- amd64
- arm64
env:
PYTHONUTF8: "1"
NEXTCLOUD_USER: ${{ secrets.NEXTCLOUD_USER }}
NEXTCLOUD_PASS: ${{ secrets.NEXTCLOUD_PASS }}
SCCACHE_GHA_ENABLED: "true"
steps:
# ---- orchestration / environment setup (stays in the workflow) ---- #
- name: Checkout fork repository (with submodules)
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: .
submodules: recursive
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- name: Checkout nextcloud-office-brand repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: Euro-Office/nextcloud-office-brand
path: build/brands/nextcloud-office-brand
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: common-files
path: . # lands as .\common.tar
- name: Extract common
shell: pwsh
run: |
New-Item -ItemType Directory -Force -Path .\common | Out-Null
tar -xf .\common.tar -C .\common # bsdtar ships with windows-2022/arm runners
# Install Cygwin WITHOUT touching PATH (the script does the PATH ordering).
# add-to-path:false stops the action from prepending C:\cygwin\bin and
# shadowing the native perl/python/git/cmake.
- name: Install Cygwin
uses: cygwin/cygwin-install-action@v4
with:
install-dir: 'C:\cygwin64'
add-to-path: false
packages: >-
automake
cmake
make
git
python3
python3-devel
- name: Install aqtinstall
shell: pwsh
run: python -m pip install --upgrade --break-system-packages aqtinstall
# - name: Install Windows SDK, v141 toolset and ATL
# shell: pwsh
# run: |
# $vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
# $vsInstaller = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vs_installer.exe"
# $installPath = & $vsWhere -latest -products * -property installationPath
# & $vsInstaller modify `
# --installPath $installPath `
# --add Microsoft.VisualStudio.Component.Windows10SDK.19041 `
# --add Microsoft.VisualStudio.Component.VC.v141.x86.x64 `
# --add Microsoft.VisualStudio.Component.VC.v141.ATL `
# --add Microsoft.VisualStudio.Component.VC.v141.MFC `
# --quiet --norestart --force
# if ($LASTEXITCODE -notin @(0, 3010)) {
# Write-Warning "vs_installer returned $LASTEXITCODE — components may already be installed, continuing."
# }
- name: Set up sccache
uses: mozilla-actions/sccache-action@v0.0.10 # puts sccache on PATH + exports the cache tokens
- name: Install Ninja
shell: pwsh
run: choco install ninja -y --no-progress # usually already on windows-2022; harmless if so
- name: Set up vcpkg
uses: lukka/run-vcpkg@v11 # exports VCPKG_ROOT for the script
# ---- build + package (single source of truth: the script) ---- #
# Covers: copy login assets, deterministic PATH (native > Cygwin > rest),
# tool verification, vcvars + CMake configure/build/install, robocopy
# overlay of common, and make.ps1 / make_zip.ps1 / make_inno.ps1.
- name: Build & package
shell: pwsh
run: |
.\build\windows\build.ps1 `
-CommonDir "${{ github.workspace }}\common" `
-ProductVersion "${{ env.PRODUCT_VERSION }}" `
-Arch ${{ matrix.arch == 'arm64' && 'arm64' || 'x64' }} `
-Target standalone `
-CompanyName Euro-Office `
-ProductName DesktopEditors
# ---- collect outputs (stays in the workflow) ---- #
- uses: actions/upload-artifact@v4
with:
name: windows-packages-${{ matrix.arch }}
path: |
desktop-apps/package/zip/*.zip
desktop-apps/package/inno/*.exe
desktop-apps/package/advinst/*.msi
build-linux:
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
needs: build-common
permissions:
contents: write
packages: write
strategy:
fail-fast: false
matrix:
arch:
- amd64
- arm64
brand:
- name: euro-office
extra_bake_files: ""
extra_targets: ""
cache_prefix: ""
#- name: nextcloud-office
# extra_bake_files: "./brands/nextcloud-office-brand/brand-server.hcl"
# extra_targets: "brand-icons,"
# cache_prefix: "nextcloud-office-"
steps:
- name: Checkout fork repository (with submodules)
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: .
submodules: recursive
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- name: Checkout nextcloud-office-brand repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: Euro-Office/nextcloud-office-brand
path: build/brands/nextcloud-office-brand
token: ${{ secrets.EURO_OFFICE_MIRROR_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: common-files
path: ./build/linux
- name: Extract common
run: |
mkdir -p ./build/linux/common
tar -xf ./build/linux/common.tar -C ./build/linux/common
- name: Debug workspace
run: |
echo "workspace: ${{ github.workspace }}"
ls -la "${{ github.workspace }}"
ls -la "${{ github.workspace }}/build" || echo "build/ MISSING"
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
- name: Restore desktop build caches
uses: actions/cache@v4
id: desktop-cache
with:
path: |
ccache
nuget-cache
key: ${{ runner.os }}-desktop-${{ hashFiles('core/vcpkg.json', 'desktop-apps/win-linux/CMakeLists.txt') }}
restore-keys: |
${{ runner.os }}-desktop-
- name: Inject caches into BuildKit
uses: reproducible-containers/buildkit-cache-dance@v3.4.0
with:
builder: ${{ steps.buildx.outputs.name }}
cache-map: |
{
"ccache": { "target": "/ccache", "id": "ccache" },
"nuget-cache": { "target": "/nuget-cache", "id": "nuget-cache" }
}
skip-extraction: ${{ steps.desktop-cache.outputs.cache-hit }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute tags and push flags
id: meta
run: |
REF_NAME=$(echo '${{ github.ref_name }}' | tr '/' '-')
echo "ref_name=${REF_NAME}" >> $GITHUB_OUTPUT
echo "sha_short=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"
# Parse PRODUCT_VERSION / BUILD_NUMBER from tag of the form v${PRODUCT_VERSION}-${BUILD_NUMBER}
# (e.g. v9.3.1-beta.1, v9.3.1-stable.1). Fall back to env defaults otherwise.
if [[ "$IS_TAG" == "true" && "${{ github.ref_name }}" =~ ^v([^-]+)-(.+)$ ]]; then
echo "product_version=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
echo "build_number=${BASH_REMATCH[2]}" >> $GITHUB_OUTPUT
else
echo "product_version=${{ env.PRODUCT_VERSION }}" >> $GITHUB_OUTPUT
echo "build_number=${{ env.BUILD_NUMBER }}" >> $GITHUB_OUTPUT
fi
- name: Build all targets (packages → docker → develop)
uses: docker/bake-action@4a9a8d494466d37134e2bfca2d3a8de8fb2681ad # v5.13.0
with:
workdir: ./build/linux
# For nextcloud-office, brand-server.hcl is appended; empty lines are
# filtered by bake-action so euro-office sees only the base file.
files: |
./docker-bake.hcl
# extra_targets is either "" (euro-office) or "brand-icons," so the
# comma-joined target list resolves correctly for both.
targets: packages
# push=false here; per-target pushing is controlled via tags below.
# Targets with empty tags= are not pushed regardless of this flag.
push: false
set: |
core-base.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}core-base-buildcache
core-base.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}core-base-buildcache,mode=max
core-base.tags=
desktop-linux.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-linux-buildcache
desktop-linux.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}desktop-linux-buildcache,mode=max
desktop-linux.tags=
desktop-linux.contexts.desktop-common=./common
packages.cache-from=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}packages-buildcache
packages.cache-to=type=registry,ref=${{ env.REGISTRY }}/${{ env.CACHE_IMAGE_NAME }}:${{ steps.meta.outputs.ref_name }}-${{ matrix.brand.cache_prefix }}packages-buildcache,mode=max
packages.tags=
env:
GIT_COMMIT: ${{ steps.meta.outputs.sha_short }}
REGISTRY: ${{ env.REGISTRY }}
PRODUCT_VERSION: ${{ steps.meta.outputs.product_version }}
BUILD_NUMBER: ${{ steps.meta.outputs.build_number }}
BUILD_ROOT: ${{ env.BUILD_ROOT }}
NUGET_CACHE: local
NEXTCLOUD_USER: ${{ secrets.NEXTCLOUD_USER }}
NEXTCLOUD_PASS: ${{ secrets.NEXTCLOUD_PASS }}
- uses: actions/upload-artifact@v4
with:
name: linux-packages-${{ matrix.arch }}
path: |
build/linux/deploy/packages/*.deb
build/linux/deploy/packages/*.rpm