Migrate morphaweb from parcel to Bun and generate executables #1
Workflow file for this run
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: Release Executables | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Build Executables | |
| run: | | |
| bun run build:mac | |
| bun run build:mac-intel | |
| bun run build:linux | |
| bun run build:windows | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| morphaweb-mac | |
| morphaweb-mac-intel | |
| morphaweb-linux | |
| morphaweb-windows.exe |