Skip to content

Commit

Permalink
fix: [yml] Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveClement committed Aug 14, 2024
1 parent c34d6c1 commit 12609bd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/agents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,24 @@ jobs:
run: sudo apt update && sudo apt install -y ca-certificates

- name: build linux
run: /home/runner/configurator/bin/fleetctl package \
run: |
/home/runner/configurator/bin/fleetctl package \
--type deb \
--fleet-url=${{ env.OSQUERY_URL }} \
--enroll-secret='${{ secrets.OSQUERY_SECRET }}' \
--config orbit.yml
- name: build macos
run: /home/runner/configurator/bin/fleetctl package \
run: |
/home/runner/configurator/bin/fleetctl package \
--type pkg \
--fleet-url=${{ env.OSQUERY_URL }} \
--enroll-secret='${{ secrets.OSQUERY_SECRET }}'
--config orbit.yml
- name: build windows
run: /home/runner/configurator/bin/fleetctl package \
run: |
/home/runner/configurator/bin/fleetctl package \
--type msi \
--fleet-url=${{ env.OSQUERY_URL }} \
--enroll-secret='${{ secrets.OSQUERY_SECRET }}' \
Expand Down

0 comments on commit 12609bd

Please sign in to comment.