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: |