Skip to content

Commit a3c35cb

Browse files
committed
Set TMPDIR=/tmp/DLTMP
1 parent 5ee539b commit a3c35cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ jobs:
358358
- name: Set up environment
359359
run: |
360360
brew install exempi # Needed by python-xmp-toolkit
361-
mkdir -p ~/DLTMP
362-
echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV"
361+
mkdir -p /tmp/DLTMP
362+
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
363363
git config --global user.email "[email protected]"
364364
git config --global user.name "GitHub Almighty"
365365

.github/workflows/template/build-{{ostype}}.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,8 @@ jobs:
587587
run: |
588588
{% if ostype == "macos" %}
589589
brew install exempi # Needed by python-xmp-toolkit
590-
mkdir -p ~/DLTMP
591-
echo TMPDIR="$HOME"/DLTMP >> "$GITHUB_ENV"
590+
mkdir -p /tmp/DLTMP
591+
echo TMPDIR=/tmp/DLTMP >> "$GITHUB_ENV"
592592
{% endif %}
593593
git config --global user.email "[email protected]"
594594
git config --global user.name "GitHub Almighty"

0 commit comments

Comments
 (0)