From 43afa97a55fa5387825abaf969a8aee66cc7d3b1 Mon Sep 17 00:00:00 2001 From: Brendon Jones Date: Fri, 19 Feb 2021 18:00:57 +1300 Subject: [PATCH] Use variable from the Linux environment rather than the github one. --- .github/workflows/deb-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deb-build.yaml b/.github/workflows/deb-build.yaml index fd8e6ff..9049dee 100644 --- a/.github/workflows/deb-build.yaml +++ b/.github/workflows/deb-build.yaml @@ -45,8 +45,8 @@ jobs: - name: Store packages for publishing run: | export DIRNAME=${{ matrix.target.distro }}_${{ matrix.target.codename }} - mkdir -p packages/${{ env.DIRNAME }} - cp ../*.deb packages/${{ env.DIRNAME }}/ + mkdir -p packages/${DIRNAME} + cp ../*.deb packages/${DIRNAME}/ - name: Store artifacts for checking uses: actions/upload-artifact@v2