diff --git a/.github/workflows/build-macos.yaml b/.github/workflows/build-macos.yaml index 6f25b75820..3168bfacb5 100644 --- a/.github/workflows/build-macos.yaml +++ b/.github/workflows/build-macos.yaml @@ -405,8 +405,8 @@ jobs: - name: Set up environment run: | brew install exempi # Needed by python-xmp-toolkit - mkdir -p /private/tmp/DLTMP - echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV" + mkdir -p ~/DLTMP + echo TMPDIR='~/DLTMP' >> "$GITHUB_ENV" git config --global user.email "test@github.land" git config --global user.name "GitHub Almighty" diff --git a/.github/workflows/template/build-{{ostype}}.yaml.j2 b/.github/workflows/template/build-{{ostype}}.yaml.j2 index 701596418a..ae30fea959 100644 --- a/.github/workflows/template/build-{{ostype}}.yaml.j2 +++ b/.github/workflows/template/build-{{ostype}}.yaml.j2 @@ -681,8 +681,8 @@ jobs: run: | {% if ostype == "macos" %} brew install exempi # Needed by python-xmp-toolkit - mkdir -p /private/tmp/DLTMP - echo TMPDIR=/private/tmp/DLTMP >> "$GITHUB_ENV" + mkdir -p ~/DLTMP + echo TMPDIR='~/DLTMP' >> "$GITHUB_ENV" {% endif %} git config --global user.email "test@github.land" git config --global user.name "GitHub Almighty"