Remove vim mode from mini-editor, which didn't really work anyway #566
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 & Release Edge | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Setup Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.25.1" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Compile frontend and plug-compile | |
| run: | | |
| npm run build | |
| npm run build:plug-compile | |
| - name: Build Go binaries for multiple platforms | |
| run: make build-server-releases | |
| - name: Update edge release | |
| uses: softprops/action-gh-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| draft: false | |
| tag_name: edge | |
| body: Automated build from commit ${{ github.sha }} | |
| prerelease: true | |
| files: | | |
| website/CHANGELOG.md | |
| dist/plug-compile.js | |
| silverbullet-*.zip |