Skip to content

Commit e7e1a05

Browse files
elliptic1claude
andcommitted
Add HTML5 web version playable via GitHub Pages
- Port game to HTML5 Canvas/JavaScript - Add touch controls for mobile play - Add keyboard controls (Arrow keys + Z/X) - Update GitHub Actions to deploy to Pages on main branch Play at: https://elliptic1.github.io/BubbleBobble/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 12c3951 commit e7e1a05

3 files changed

Lines changed: 815 additions & 0 deletions

File tree

.github/workflows/android-build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,33 @@ jobs:
3737
name: app-debug
3838
path: app/build/outputs/apk/debug/app-debug.apk
3939
retention-days: 14
40+
41+
deploy:
42+
runs-on: ubuntu-latest
43+
needs: build
44+
if: github.ref == 'refs/heads/main'
45+
46+
permissions:
47+
contents: read
48+
pages: write
49+
id-token: write
50+
51+
environment:
52+
name: github-pages
53+
url: ${{ steps.deployment.outputs.page_url }}
54+
55+
steps:
56+
- name: Checkout code
57+
uses: actions/checkout@v4
58+
59+
- name: Setup Pages
60+
uses: actions/configure-pages@v4
61+
62+
- name: Upload Pages artifact
63+
uses: actions/upload-pages-artifact@v3
64+
with:
65+
path: docs
66+
67+
- name: Deploy to GitHub Pages
68+
id: deployment
69+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)