ci: downgrade upload/download-artifact v4 to v3
CI / server-core-test (push) Has been skipped
CI / device-agent-test (push) Has been skipped
CI / dashboard-test (push) Has been skipped
CI / build-server-core (push) Successful in 6m58s
CI / build-dashboard (push) Successful in 1m4s
CI / build-docs (push) Successful in 52s
CI / release (push) Has been cancelled
CI / build-device-agent (push) Has been cancelled

Gitea self-hosted 1.26.1 does not support @actions/artifact v2.0.0+
(upload-artifact@v4+, download-artifact@v4+). Use v3 instead.
This commit is contained in:
datadunia
2026-06-10 09:42:47 +07:00
parent bfb6dcc42f
commit 96248d3d31
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
run: npm run build run: npm run build
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: dashboard-ui-dist name: dashboard-ui-dist
path: apps/dashboard-ui/dist/ path: apps/dashboard-ui/dist/
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
go build -o bin/nexus-device-agent-${{ matrix.goos }}-${{ matrix.goarch }}${EXT} . go build -o bin/nexus-device-agent-${{ matrix.goos }}-${{ matrix.goarch }}${EXT} .
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: nexus-device-agent-${{ matrix.goos }}-${{ matrix.goarch }} name: nexus-device-agent-${{ matrix.goos }}-${{ matrix.goarch }}
path: apps/device-agent/bin/nexus-device-agent-* path: apps/device-agent/bin/nexus-device-agent-*
+1 -1
View File
@@ -36,7 +36,7 @@ jobs:
run: go build -o bin/server-core . run: go build -o bin/server-core .
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: server-core-linux-amd64 name: server-core-linux-amd64
path: apps/server-core/bin/server-core path: apps/server-core/bin/server-core
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
run: npm run docs:build run: npm run docs:build
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: docs-dist name: docs-dist
path: apps/docs/.vitepress/dist/ path: apps/docs/.vitepress/dist/
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
persist-credentials: true persist-credentials: true
- name: Download all artifacts - name: Download all artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
path: ./artifacts path: ./artifacts