📝 Fix invalid URLs of lux.toml of ime #318
This file contains hidden or 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: | |
| paths-ignore: | |
| - "**.md" | |
| - doc/* | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - doc/* | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: leso-kn/gh-actions-lua@master | |
| with: | |
| luaVersion: "5.1" | |
| - uses: hishamhm/gh-actions-luarocks@master | |
| - uses: xmake-io/github-action-setup-xmake@v1 | |
| - name: Install dependencies | |
| run: | | |
| luarocks install luanativeobjects | |
| luarocks install lua-cjson | |
| sudo apt-get -y update | |
| sudo apt-get -y install librime-dev | |
| - uses: nvim-neorocks/luarocks-tag-release@v7 | |
| env: | |
| LUAROCKS_API_KEY: ${{secrets.LUAROCKS_API_KEY}} | |
| if: "! startsWith(github.ref, 'refs/tags/')" | |
| with: | |
| extra_luarocks_args: | | |
| --force | |
| version: scm | |
| template: template.rockspec | |
| - uses: nvim-neorocks/luarocks-tag-release@v7 | |
| env: | |
| LUAROCKS_API_KEY: ${{secrets.LUAROCKS_API_KEY}} | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| extra_luarocks_args: | | |
| --force | |
| template: template.rockspec |