Merge pull request #1819 from onespaceman/panels #551
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 Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.6.8 | |
| - name: Setup Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.25.1" | |
| - name: Compile frontend and plug-compile with Deno | |
| run: | | |
| deno task build-production | |
| deno task 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 |