From 1bb767ff851a2ffc3ed06f13962e3daba47fb42e Mon Sep 17 00:00:00 2001 From: Nindi Gill Date: Thu, 8 Dec 2022 13:07:23 +1100 Subject: [PATCH] Fix DrString tar --- .github/workflows/do_all_of_the_things.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/do_all_of_the_things.yml b/.github/workflows/do_all_of_the_things.yml index ebe918a..2ca35a4 100644 --- a/.github/workflows/do_all_of_the_things.yml +++ b/.github/workflows/do_all_of_the_things.yml @@ -14,7 +14,9 @@ jobs: - name: Download DrString run: curl --location --remote-name https://github.com/dduan/DrString/releases/latest/download/drstring-x86_64-apple-darwin.tar.gz - name: Extract DrString - run: tar --extract --file drstring-x86_64-apple-darwin.tar.gz --directory drstring-x86_64-apple-darwin + run: | + mkdir drstring-x86_64-apple-darwin + tar --extract --file drstring-x86_64-apple-darwin.tar.gz --directory drstring-x86_64-apple-darwin - name: Add DrString to $PATH run: echo "$GITHUB_WORKSPACE/drstring-x86_64-apple-darwin" >> $GITHUB_PATH - name: Print DrString version