diff --git a/.github/workflows/main_tetris-clone.yml b/.github/workflows/main_tetris-clone.yml index c2cd5e6..a6f6b1d 100644 --- a/.github/workflows/main_tetris-clone.yml +++ b/.github/workflows/main_tetris-clone.yml @@ -61,7 +61,7 @@ jobs: slot-name: 'production' publish-profile: ${{ secrets.AzureAppService_PublishProfile_ba3d879df28c472d8865f0591c14832f }} - - name: 'Start virtual environment and web socket' + - name: 'Start web socket' run: | - python -m venv venv + pip install websockets python main.py \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 71b6983..4629e89 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -asyncio==3.4.3 -websockets==9.1 \ No newline at end of file +asyncio +websockets \ No newline at end of file