Compare commits

..

No commits in common. "ed5f5236903ef8a784f8927e9fd6b3da1246b86e" and "50e7cb27ee4c34841d06ef003f4506e3cc4c7715" have entirely different histories.

2 changed files with 4 additions and 22 deletions

View File

@ -2,17 +2,6 @@ name: Build qmk_keymap repo
on:
workflow_call:
inputs:
qmk_repo:
description: 'qmk_firmware repo to build against'
default: 'qmk/qmk_firmware'
required: false
type: string
qmk_ref:
description: 'qmk_firmware branch to build against'
default: 'master'
required: false
type: string
permissions:
contents: write
@ -51,8 +40,7 @@ jobs:
- name: Checkout QMK
uses: actions/checkout@v3
with:
repository: ${{ inputs.qmk_repo }}
ref: ${{ inputs.qmk_ref }}
repository: qmk/qmk_firmware
submodules: recursive
- name: Checkout userspace
@ -60,9 +48,6 @@ jobs:
with:
path: users/${{ github.actor }}
- name: Install missing dependencies
run: pip3 install -r requirements.txt
- name: Build firmware
run: qmk compile -j=4 "users/${{ github.actor }}/${{ matrix.file }}"
@ -89,7 +74,6 @@ jobs:
repo_token: "${{ github.token }}"
automatic_release_tag: "latest"
title: "Latest Firmware"
prerelease: false
files: |
**/*.hex
**/*.bin

View File

@ -67,8 +67,6 @@ Run the following commands in your computer to create a folder with a few templa
git clone https://github.com/gh-username/qmk_keymap
```
?> Use your GitHub personal access token at the password prompt. If you have setup SSH access, replace `https://github.com/gh-username/qmk_keymap.git` with `git@github.com:gh-username/qmk_keymap.git` in the remote origin command above.
?> For Windows user running MSYS, the above command will create the folder `qmk_keymap/` and its content in the `C:\Users\<windows_username>\qmk_keymap\` path location.
## Initial Code Commit
@ -100,8 +98,10 @@ To commit and push them into GitHub, run the following commands:
cd ~/qmk_keymap
git add -A
git commit -m "Initial QMK keymap commit"
git branch -M main
git push
```
?> Use your GitHub personal access token at the password prompt. If you have setup SSH access, replace `https://github.com/gh-username/qmk_keymap.git` with `git@github.com:gh-username/qmk_keymap.git` in the remote origin command above.
### Review workflow output
@ -111,9 +111,7 @@ Files committed to GitHub in the previous step will automatically trigger the wo
3. Select that workflow to display its run from the last commit.
4. If there are build errors, review the job log for details.
### Flashing
Successfully compiled firmware will be under the "**Releases**" section, <https://github.com/qmk/qmk_keymap/releases/tag/latest>.
Successfully compiled firmware will be under the "**Releases**" section, <https://github.com/zvecr/qmk_keymap/releases/tag/latest>.
Download and flash the firmware file into your keyboard using [QMK Toolbox](https://docs.qmk.fm/#/newbs_flashing?id=flashing-your-keyboard-with-qmk-toolbox).