Skip to content

Commit

Permalink
Create build_release_tag.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Beinsezii authored Nov 12, 2023
1 parent a066035 commit 2e01b27
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build_release_tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Latest Release Tag
on:
push:
tags:
'*'
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 2e01b27

Please sign in to comment.