Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Deploy static content to Pages

on:
push:
branches: ["master", "chore/update-website"]
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot remove "chore/update-website" for testing

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare site directory
run: |
mkdir _site
cp index.html _site/
cp -r assets _site/

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '_site/'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ By the way,

| Feature | Description | Demo |
|---------------|-------------------------------------------------------|---------------------------------------------------------------|
| Tooltip hints | Shows input key hints on tap | <img height=500 src="./assets/tooltip_hints.gif" alt="GIF" /> |
| State control | Modify keyboard state by tapping control buttons | <img height=500 src="./assets/state_control.gif" alt="GIF" /> |
| Gesture input | Swipe right, left, up, down to input common notations | <img height=500 src="./assets/tooltip_hints.gif" alt="GIF" /> |
| Tooltip hints | Shows input key hints on tap | <img height=500 src="./assets/tooltip_demo.gif" alt="GIF" /> |
| State control | Modify keyboard state by tapping control buttons | <img height=500 src="./assets/state_control_demo.gif" alt="GIF" /> |
| Gesture input | Swipe right, left, up, down to input common notations | <img height=500 src="./assets/gesture_demo.gif" alt="GIF" /> |

## License

Expand Down
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

Binary file added assets/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gesture_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/preview-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/preview-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ricky-hu-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/state_control_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/tooltip_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
268 changes: 268 additions & 0 deletions index.html

Large diffs are not rendered by default.

Loading