feat: search by extension titles #3
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
| name: build | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ["**.luau"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup rokit | |
| uses: CompeyDev/setup-rokit@v0.1.0 | |
| - name: Setup pesde | |
| uses: axiom-co/setup-pesde@v0.4.1 | |
| - name: Install dependencies | |
| run: pesde install | |
| - name: Build Rocket | |
| run: lune run build model | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Plugin | |
| path: Rocket.rbxm |