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