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 2851acf commit 5cda5d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/build-deb-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:

- name: Run Package Build with Mounted Source
run: |
mkdir -p ${{RUNNER_TEMP}}/build
mkdir -p ${{ env.RUNNER_TEMP }}/build
docker run --rm \
-v ${{ env.GITHUB_WORKSPACE }}:/workspace/ice \
-v ${{ env.RUNNER_TEMP }}/build:/workspace/build \
Expand All @@ -41,10 +41,10 @@ runs:
with:
name: deb-packages-${{ inputs.os }}
path: |
${{RUNNER_TEMP}}/build/*.deb
${{RUNNER_TEMP}}/build/*.ddeb
${{RUNNER_TEMP}}/build/*.dsc
${{RUNNER_TEMP}}/build/*.tar.xz
${{RUNNER_TEMP}}/build/*.tar.gz
${{RUNNER_TEMP}}/build/*.changes
${{RUNNER_TEMP}}/build/*.buildinfo
${{ env.RUNNER_TEMP }}/build/*.deb
${{ env.RUNNER_TEMP }}/build/*.ddeb
${{ env.RUNNER_TEMP }}/build/*.dsc
${{ env.RUNNER_TEMP }}/build/*.tar.xz
${{ env.RUNNER_TEMP }}/build/*.tar.gz
${{ env.RUNNER_TEMP }}/build/*.changes
${{ env.RUNNER_TEMP }}/build/*.buildinfo

0 comments on commit 5cda5d1

Please sign in to comment.