Skip to content

Commit 0570888

Browse files
committed
Make the directory first, then touch the file
1 parent ce241d7 commit 0570888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- name: Write Docker-secrets-like file for CI
3434
run: |
35-
touch /run/secrets/django_secret_key
35+
mkdir -p /run/secrets && touch /run/secrets/django_secret_key
3636
echo "for-testing-only" > /run/secrets/django_secret_key
3737
3838
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)