Skip to content

Commit

Permalink
CI: Build debian package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Apr 10, 2024
1 parent 646aa9d commit 0512950
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,38 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
path: rpipins

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

- name: Install Dependencies
working-directory: rpipins
run: |
make dev-deps
- name: Build Packages
working-directory: rpipins
run: |
make build
- name: Upload Packages
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_FILE }}
path: dist/
path: ${{ github.workspace }}/rpipins/dist/

- name: Build Debian Package
working-directory: rpipins
run: |
make deb-deps
make deb
- name: Upload Debian Package
uses: actions/upload-artifact@v4
with:
name: ${{ env.RELEASE_FILE }} (deb)
path: ${{ github.workspace }}/*.deb

0 comments on commit 0512950

Please sign in to comment.