Switch to bun for binary generation #37
This file contains 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: pr | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Build | |
run: yarn install | |
- name: Rename | |
run: | | |
mv astgen-linux-x64 astgen-linux | |
mv astgen-linux-arm64 astgen-linux-arm | |
mv astgen-macos-x64 astgen-macos | |
mv astgen-macos-arm64 astgen-macos-arm | |
mv astgen-win-x64.exe astgen-win.exe | |
- name: Run gzexe | |
run: | | |
gzexe astgen-linux | |
gzexe astgen-linux-arm | |
gzexe astgen-macos | |
gzexe astgen-macos-arm | |
gzexe astgen-win.exe | |
- name: Make executable | |
run: | | |
chmod +x astgen-macos | |
chmod +x astgen-macos-arm | |
chmod +x astgen-linux | |
chmod +x astgen-linux-arm | |
- name: Print stats | |
run: | | |
ls -lh | |
- name: Print version | |
run: | | |
./astgen-linux --version |