Skip to content

Commit

Permalink
DEB builder fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Feb 4, 2025
1 parent 6dace8d commit 894ddb5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Build Debian Package"
description: "Builds a Debian source package using a Docker image"
name: "Build DEB Package"
description: "Builds a DEB package using a Docker image"
inputs:
ice_version:
description: "The ICE version to build"
Expand All @@ -18,9 +18,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Build Docker Image
run: docker build -f ${{ inputs.dockerfile_path }} -t ${{ inputs.docker_image }} .
shell: bash
Expand All @@ -40,4 +37,9 @@ runs:
uses: actions/upload-artifact@v4
with:
name: debian-packages-${{ inputs.os }}
path: output/
path: |
output/*.deb
output/*.dsc
output/*.tar.gz
output/*.changes
output/*.buildinfo
5 changes: 4 additions & 1 deletion .github/workflows/build-deb-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ jobs:
dockerfile_path: ice/packaging/dpkg/ubuntu-24.04-arm/Dockerfile

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Call Build Debian Package Action
uses: ./.github/actions/build-debian-package
uses: ./.github/actions/build-deb-package
with:
ice_version: ${{ inputs.ice_version }}
deb_build_options: ${{ inputs.deb_build_options }}
Expand Down

0 comments on commit 894ddb5

Please sign in to comment.