From 55f4ec7317f7ea6926751202ce412cbe511d8230 Mon Sep 17 00:00:00 2001 From: Luke Craig Date: Thu, 23 Jan 2025 22:39:36 -0500 Subject: [PATCH] upload deb files --- .github/workflows/publish_docker.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_docker.yml b/.github/workflows/publish_docker.yml index 295d92b13931..1a75b38ba706 100644 --- a/.github/workflows/publish_docker.yml +++ b/.github/workflows/publish_docker.yml @@ -40,9 +40,16 @@ jobs: pandare/panda-ng:${{ github.sha }} pandare/panda-ng:${{ steps.version.outputs.v-version }} pandare/panda-ng:latest + + - name: Build package + working-directory: panda/debian + run: ./setup.sh Ubuntu 22.04 + - name: Upload wheel and debian packages to release uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ steps.version.outputs.v-version }} \ No newline at end of file + tag_name: ${{ steps.version.outputs.v-version }} + files: | + panda/debian/pandare*.deb \ No newline at end of file