Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Usbac committed Sep 8, 2023
2 parents 7b3237f + 007aca2 commit 9f17e2e
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,38 @@ 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

steps:
- uses: actions/checkout@v3

- name: 'Build'
run: make borealis NAME="borealis-mac"

- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: borealis-mac
path: borealis-mac
retention-days: 30

0 comments on commit 9f17e2e

Please sign in to comment.