Skip to content

Commit

Permalink
Fix env syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Feb 4, 2025
1 parent 368ac8d commit 29cdabd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/actions/build-deb-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ runs:

- name: Run Package Build with Mounted Source
run: |
mkdir -p ${{ env.HOME }}/build
mkdir -p "$HOME/build"
docker run --rm \
-v ${{ env.GITHUB_WORKSPACE }}:/workspace/ice \
-v ${{ env.HOME }}/build:/workspace/build \
-v "$GITHUB_WORKSPACE:/workspace/ice" \
-v "$HOME/build:/workspace/build" \
-e ICE_VERSION=${{ inputs.ice_version }} \
-e DEB_BUILD_OPTIONS="${{ inputs.deb_build_options }}" \
--entrypoint /workspace/ice/packaging/dpkg/build-package.sh \
Expand All @@ -39,10 +39,10 @@ runs:
with:
name: deb-packages-${{ inputs.os }}
path: |
${{ env.HOME }}/build/*.deb
${{ env.HOME }}/build/*.ddeb
${{ env.HOME }}/build/*.dsc
${{ env.HOME }}/build/*.tar.xz
${{ env.HOME }}/build/*.tar.gz
${{ env.HOME }}/build/*.changes
${{ env.HOME }}/build/*.buildinfo
"$HOME/build/*.deb"
"$HOME/build/*.ddeb"
"$HOME/build/*.dsc"
"$HOME/build/*.tar.xz"
"$HOME/build/*.tar.gz"
"$HOME/build/*.changes"
"$HOME/build/*.buildinfo"

0 comments on commit 29cdabd

Please sign in to comment.