From 195e6cc053fa02f3a8c94fdef66dbb5e6c310bda Mon Sep 17 00:00:00 2001
From: shenmo <jifengshenmo@outlook.com>
Date: Fri, 25 Oct 2024 06:19:46 +0000
Subject: [PATCH] update pipeline-20241025.yml

---
 .workflow/pipeline-20241025.yml | 55 +++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 .workflow/pipeline-20241025.yml

diff --git a/.workflow/pipeline-20241025.yml b/.workflow/pipeline-20241025.yml
new file mode 100644
index 0000000..080c02f
--- /dev/null
+++ b/.workflow/pipeline-20241025.yml
@@ -0,0 +1,55 @@
+version: '1.0'
+name: pipeline-20241025
+displayName: Debian-Build-amd64
+triggers:
+  trigger: manual
+  push:
+    tags:
+      prefix:
+        - ''
+stages:
+  - name: stage-d1472d18
+    displayName: Build DEB
+    strategy: naturally
+    trigger: auto
+    executor: []
+    steps:
+      - step: execute@docker
+        name: execute_by_docker
+        displayName: Build Debian amd64
+        certificate: ''
+        image: docker.io/debian:bookworm
+        command:
+          - export DEBIAN_FRONTEND=noninteractive
+          - 'apt install devscripts '
+          - apt build-dep . -y
+          - dpkg-buildpackage -b -us -uc
+          - cd ..
+          - ls -all
+          - mkdir target
+          - for f in $(find . -type f -name "*.deb")
+          - 'do '
+          - mv $f target
+          - done
+          - ''
+        artifacts:
+          - name: BUILD_ARTIFACT
+            path:
+              - ./target
+        notify: []
+        strategy:
+          retry: '0'
+  - name: stage-41e41b9f
+    displayName: push
+    strategy: naturally
+    trigger: auto
+    executor: []
+    steps:
+      - step: publish@general_artifacts
+        name: publish_general_artifacts
+        displayName: 上传制品
+        dependArtifact: BUILD_ARTIFACT
+        artifactName: output
+        notify: []
+        strategy:
+          retry: '0'