Update publish.yml #2
Workflow file for this run
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: Publish | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-linux: | |
name: Publish Linux Binaries | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
source /home/runner/.bashrc | |
bun build index.ts --compile --outfile=quicksubmit | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: quicksubmit | |
asset_name: quicksubmit-linux-amd64 | |
tag: ${{ github.ref }} | |
overwrite: true | |
build-macos: | |
name: Publish macOS binaries | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
source /home/runner/.bashrc | |
bun build index.ts --compile --outfile=quicksubmit | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: quicksubmit | |
asset_name: quicksubmit-darwin-amd64 | |
tag: ${{ github.ref }} | |
overwrite: true |