Enable page scrolling even when canvas is focused #5
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: Deploy Godot HTML export to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install 7zip | |
| run: sudo apt-get update && sudo apt-get install -y p7zip-full | |
| - name: Export Godot project | |
| uses: firebelley/godot-export@v5.2.1 | |
| with: | |
| godot_executable_download_url: https://github.com/godotengine/godot/releases/download/4.5.1-stable/Godot_v4.5.1-stable_linux.x86_64.zip | |
| godot_export_templates_download_url: https://github.com/godotengine/godot/releases/download/4.5.1-stable/Godot_v4.5.1-stable_export_templates.tpz | |
| relative_project_path: ./ | |
| relative_export_path: ./export | |
| archive_export_output: false | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload Godot HTML export | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./export/Web | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |