Add jp layout keyboard support #110
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
name: Build and upload artifact | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install depends | |
run: sudo apt-get install -y mingw-w64 ninja-build nasm; pip3 install meson | |
- name: Upgrade gcc | |
run: npx xpm init && npx xpm install @xpack-dev-tools/mingw-w64-gcc@latest --verbose | |
- name: Make | |
run: export PATH=$GITHUB_WORKSPACE/xpacks/.bin:$PATH && make setup dist-no-7z | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: out/ |