ballistica server run #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ballistica server run | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| server: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout the repo | |
| uses: actions/checkout@v4 | |
| - name: installation. | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y software-properties-common | |
| sudo add-apt-repository -y ppa:deadsnakes/ppa | |
| sudo apt-get update | |
| sudo apt-get install -y python3.13 python3.13-dev python3.13-venv python3-pip | |
| - name: show dir. | |
| run: | | |
| ls | |
| - name: run server. | |
| run: | | |
| chmod 777 dist/bombsquad_headless | |
| chmod 777 bombsquad_server | |
| ./bombsquad_server | |