fix(ci): rewrite deploy_call.yaml with correct YAML indentation
Beta Release / deploy (push) Successful in 1m52s

This commit is contained in:
datadunia
2026-05-30 17:31:56 +07:00
parent 7793215e96
commit 870a08ae58
-11
View File
@@ -23,7 +23,6 @@ jobs:
TOKEN="${{ secrets.BUILD_TOKEN }}"
git clone -c credential.helper="" \
https://token:$TOKEN@git.datadunia.com/nexusguard/Nexus-Guard-Suite.git .
- name: Clone submodules
run: |
TOKEN="${{ secrets.BUILD_TOKEN }}"
@@ -36,33 +35,27 @@ jobs:
# Dashboard UI
git clone -c credential.helper="" \
https://token:$TOKEN@git.datadunia.com/nexusguard/nexus-dashboard-ui.git apps/dashboard-ui
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Download Go modules
run: |
cd apps/server-core
go mod download
- name: Generate Swagger docs
run: |
go install github.com/swaggo/swag/cmd/swag@v1.16.6
cd apps/server-core
swag init -g main.go --parseDependency --parseInternal
- name: Build Server Core
run: |
cd apps/server-core
go build -o bin/server-core .
- name: Build Device Agent Cross-platform
run: |
cd apps/device-agent
@@ -72,13 +65,11 @@ jobs:
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/nexus-device-agent-linux-arm64 .
# Windows amd64
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/nexus-device-agent-windows-amd64.exe .
- name: Build Dashboard UI
run: |
cd apps/dashboard-ui
npm ci || npm install
npm run build
- name: Generate latest.json
run: |
VERSION="${{ gitea.ref_name }}"
@@ -98,7 +89,6 @@ jobs:
}
}
ENDJSON
- name: Create Release and upload assets
env:
TOKEN: ${{ secrets.BUILD_TOKEN }}
@@ -207,7 +197,6 @@ jobs:
-F "attachment=@latest.json" \
"$API/repos/$REPO/releases/$RELEASE_ID/assets?name=latest.json"
fi
- name: Cleanup build artifacts
if: always()
run: |