diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 301fcdc..8db9b17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,16 +14,25 @@ jobs: steps: - uses: actions/checkout@v3 - - name: 'Build' + - name: Build run: make borealis NAME="borealis-linux" - - name: 'Upload Artifact' + - name: Upload Artifact uses: actions/upload-artifact@v3 with: name: borealis-linux path: borealis-linux retention-days: 30 + - name: Upload artifact to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: borealis-linux + asset_name: borealis-linux + tag: ${{ github.ref }} + overwrite: true + build-macos: runs-on: macos-latest