mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
* Update build-binaries.yaml Pin action versions + add read only token to build-binaries.yaml * Update codeql-analysis.yml Pin dependencies with hash for codeql-analysis.yml * Update deploy-fleet-website.yml Pin dependencies in deploy-fleet-website.yml * Update docs.yml Pin dependencies for docs.yml * Update fleet-and-orbit.yml Pinning dependencies for fleet-and-orbit.yml * Update generate-osqueryd-app-tar-gz.yml Pin dependencies for generate-osqueryd-app-tar-gz.yml * Pin dependencies in goreleaser workflows Pinned dependencies in the 3 goreleaser workflows * Update integration.yml Pinned dependencies with hash * Update pr-helm.yaml Pinned dependencies with hash * Update push-osquery-perf-to-ecr.yml Pinned dependencies with a hash * Update release-helm.yaml Pinned one dependency with a hash * Update semgrep-analysis.yml Pinned dependencies with hashes * Update test-go.yaml Pinned dependencies with hash * Update test-packaging.yml Pinned dependencies with hashes * Update test-website.yml Pinned dependencies with hashes * Update test.yml Pinned dependencies with hashes
34 lines
939 B
YAML
34 lines
939 B
YAML
name: Generate osqueryd.app.tar.gz for Orbit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
# The workflow can be triggered by modifying OSQUERY_VERSION env.
|
|
- '.github/workflows/generate-osqueryd-app-tar-gz.yml'
|
|
pull_request:
|
|
paths:
|
|
# The workflow can be triggered by modifying OSQUERY_VERSION env.
|
|
- '.github/workflows/generate-osqueryd-app-tar-gz.yml'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
OSQUERY_VERSION: 5.2.2
|
|
|
|
jobs:
|
|
generate:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
|
|
|
- name: Generate osqueryd.app.tar.gz
|
|
run: |
|
|
make osqueryd-app-tar-gz out-path=. version=$OSQUERY_VERSION
|
|
|
|
- name: Upload osqueryd.app.tar.gz
|
|
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # v2
|
|
with:
|
|
name: osqueryd.app.tar.gz
|
|
path: osqueryd.app.tar.gz
|