From 5527cf3cef3eba26a9b7376e390feb9c5ba2be18 Mon Sep 17 00:00:00 2001 From: Lucas Manuel Rodriguez Date: Tue, 31 May 2022 07:14:59 -0300 Subject: [PATCH] Add `--fleet-desktop` to linux packaging on `test-integration.yml` (#5926) * Add --fleet-desktop to linux packaging on test-integration.yml * Fix --fleet-desktop flag --- .github/workflows/test-packaging.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 784966be18..a0468fa9cc 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -62,8 +62,14 @@ jobs: - name: Build DEB run: ./build/fleetctl package --type deb --enroll-secret=foo --fleet-url=https://localhost:8080 + - name: Build DEB with Fleet Desktop + run: ./build/fleetctl package --type deb --enroll-secret=foo --fleet-url=https://localhost:8080 --fleet-desktop + - name: Build RPM run: ./build/fleetctl package --type rpm --enroll-secret=foo --fleet-url=https://localhost:8080 + + - name: Build RPM with Fleet Desktop + run: ./build/fleetctl package --type rpm --enroll-secret=foo --fleet-url=https://localhost:8080 --fleet-desktop - name: Build MSI run: ./build/fleetctl package --type msi --enroll-secret=foo --fleet-url=https://localhost:8080