From 6367e8f8cc389e2498717a5da35be39993640e64 Mon Sep 17 00:00:00 2001 From: YourKalamity <63474858+YourKalamity@users.noreply.github.com> Date: Sat, 19 Dec 2020 11:33:56 +0000 Subject: [PATCH] Attempt to fix mac executables v2 --- .github/workflows/executables.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/executables.yml b/.github/workflows/executables.yml index 88c0fa0..e96b5c8 100644 --- a/.github/workflows/executables.yml +++ b/.github/workflows/executables.yml @@ -79,7 +79,7 @@ jobs: pip3 install pyinstaller - name: Get tag id: vars - run: echo::set-output name=tag::${GITHUB_REF#refs/*/} + run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - name: Create executable run: | pyinstaller --onefile --add-data "tkmacosx;tkmacosx" --add-data "Darwin;Darwin" --add-data "certifi;certifi" --add-data "requests;requests" --add-data "urllib3;urllib3" --add-data "lazy.ico;." --add-data "chardet;chardet" --icon "lazy.ico" --console --name "lazy-dsi-file-downloader-${{ steps.vars.outputs.tag }}-macOS" main.py