Skip to content

Commit

Permalink
Create build_release_master.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Beinsezii authored Nov 12, 2023
1 parent 2e01b27 commit 3c3f15a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build_release_master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build Master Release
on: [push, workflow_dispatch]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Linux Release
run: cargo build --release
- name: Upload Linux Artifact
uses: actions/upload-artifact@v3
with:
name: linux_so
path: target/release/libcolcon.so
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build MacOs Release
run: cargo build --release
- name: Upload MacOS Artifact
uses: actions/upload-artifact@v3
with:
name: macos_dylib
path: target/release/libcolcon.dylib
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build Windows Release
run: cargo build --release
- name: Upload Windows Artifact
uses: actions/upload-artifact@v3
with:
name: windows_dll
path: target/release/colcon.dll

0 comments on commit 3c3f15a

Please sign in to comment.