Update workflows

This commit is contained in:
Marquis Kurt 2020-07-02 12:25:08 -04:00
parent d1a70faf09
commit 78e4fef3aa
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
3 changed files with 8 additions and 6 deletions

View File

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

View File

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

View File

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