Sync QWERTY and Colemak layouts #192
This file contains 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
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
create-qwerty-keymap: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
# Add any dependencies here | |
- name: Generate QWERTY keymap | |
run: | | |
python scripts/generate_qwerty.py | |
- uses: actions/upload-artifact@master | |
with: | |
name: charybdis_qwerty.keymap | |
path: "${{ github.workspace }}/charybdis_qwerty.keymap" | |
build: | |
needs: create-qwerty-keymap | |
uses: ./.github/workflows/user_config_build.yaml | |
# uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main |