fix: Ignore build time environment variables, add release instruction… #6
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: Build | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-binaries: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: 1.1.34 | |
- name: Install depencencies | |
run: | | |
bun install | |
- name: Build command | |
run: | | |
./build.sh |