chore: bump version to v0.4 #4
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: "🤖 Copilot Setup Steps" | |
| # Automatically run the setup steps when they are changed to allow for easy validation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| pull_request: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| # Install OpenGL and X11 dependencies for Copilot setup | |
| jobs: | |
| copilot-setup-steps: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install OpenGL & X11 dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install mesa-common-dev xorg-dev |