# action-package-deb **Repository Path**: LingmoOS/action-package-deb ## Basic Information - **Project Name**: action-package-deb - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-11 - **Last Updated**: 2025-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Build Deb in Github Actions Build deb with ease in GitHub Actions. > Currently, we only support building source packages. ## Usage Below is an example of how to use this action in a GitHub Actions workflow: ```yaml steps: - name: Checkout id: checkout uses: actions/checkout@v4 - name: Run my Action id: run-action uses: LingmoOS/action-package-deb@0.0.6 with: build-binary: false build-source: true output-dir: ./debian-deb-output ``` ## Parameters | Name | Description | Required | | -------------- | ------------------------- | -------- | | `build-binary` | Build binary package | true | | `build-source` | Build source package | true | | `output-dir` | Output directory | false | | `source-dir` | Source directory | false | | `git-ref-name` | Git ref name to build deb | false |