diff --git a/.github/workflows/build-macos.yaml b/.github/workflows/build-macos.yaml index c8c9eaf0e0..539ceb0802 100644 --- a/.github/workflows/build-macos.yaml +++ b/.github/workflows/build-macos.yaml @@ -358,8 +358,8 @@ jobs: - name: Set up environment run: | brew install exempi # Needed by python-xmp-toolkit - mkdir -p ~/DLTMP - echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV" + mkdir -p /tmp/DLTMP + echo TMPDIR=/tmp/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 148bd69d66..f74f454b1c 100644 --- a/.github/workflows/template/build-{{ostype}}.yaml.j2 +++ b/.github/workflows/template/build-{{ostype}}.yaml.j2 @@ -587,8 +587,8 @@ jobs: run: | {% if ostype == "macos" %} brew install exempi # Needed by python-xmp-toolkit - mkdir -p ~/DLTMP - echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV" + mkdir -p /tmp/DLTMP + echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV" {% endif %} git config --global user.email "test@github.land" git config --global user.name "GitHub Almighty"