Skip to content

Commit

Permalink
Updated default config and github workflows/release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lcb01a committed Oct 9, 2024
1 parent 7721e7f commit 4266e13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.10.9
python-version: 3.12.7

- name: Install Python dependencies
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
run: pyinstaller --hidden-import zeroconf._utils.ipaddress --hidden-import zeroconf._handlers.answers --hidden-import=clr --add-data "./img/logo.png;img" --noconsole --onefile --distpath ./build --name=vrc-vrphone main.py

- name: Deploy EXE
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vrc-vrphone
path: ./build/vrc-vrphone.exe
Expand All @@ -45,9 +45,9 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: vrc-vrphone
path: artifact/vrc-vrphone
Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):
"version": 1,
"server_port": 9001,
"microsip_binary": microsip_binary,
"interaction_timeout": 3,
"interaction_timeout": 2,
"log_verbose": False,
"phonebook": [
["Entry1", "5229"],
Expand Down

0 comments on commit 4266e13

Please sign in to comment.