From 78e4fef3aaadc36fe294f177d090901bd82f56d8 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Thu, 2 Jul 2020 12:25:08 -0400 Subject: [PATCH] Update workflows --- .github/workflows/ci-linux.yml | 5 +++-- .github/workflows/ci-mac.yml | 5 +++-- .github/workflows/ci-win.yml | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index ebf1f1d..88f41d2 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -18,12 +18,13 @@ jobs: json_dict = {} with open('public/config.json', 'r') as file: - json_dict = load(file) + json_dict = load(file) json_dict["location"] = "desktop" with open('public/config.json', 'w+') as out: - dump(json_dict, out) + dump(json_dict, out) + shell: python - name: Install dependencies and build run: | npm install diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index 80d2b56..61e9bdd 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -47,12 +47,13 @@ jobs: json_dict = {} with open('public/config.json', 'r') as file: - json_dict = load(file) + json_dict = load(file) json_dict["location"] = "desktop" with open('public/config.json', 'w+') as out: - dump(json_dict, out) + dump(json_dict, out) + shell: python - name: Install dependencies and build run: | npm install diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index b2e6a07..beaa4b1 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -18,12 +18,12 @@ jobs: json_dict = {} with open('public/config.json', 'r') as file: - json_dict = load(file) + json_dict = load(file) json_dict["location"] = "desktop" with open('public/config.json', 'w+') as out: - dump(json_dict, out) + dump(json_dict, out) shell: python - name: Install dependencies and build run: |