Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaCabiddu committed Sep 26, 2023
1 parent 014cbaf commit beae2c8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: publish-binaries
name: publish-release

on:
push:
Expand All @@ -14,13 +14,13 @@ jobs:
include:
- os: ubuntu-latest
artifact_name: 01_Trimesh_Tiling
asset_name: 01_Trimesh_Tiling-linux-amd64
asset_name: 01_Trimesh_Tiling-linux-x64
- os: windows-latest
artifact_name: 01_Trimesh_Tiling.exe
asset_name: 01_Trimesh_Tiling-windows-amd64
asset_name: 01_Trimesh_Tiling-windows-x64.exe
- os: macos-latest
artifact_name: 01_Trimesh_Tiling
asset_name: 01_Trimesh_Tiling-macos-amd64
asset_name: 01_Trimesh_Tiling-macos-x64

steps:
- uses: actions/checkout@v3
Expand All @@ -47,6 +47,8 @@ jobs:
cd build
cmake .. -DCMAKE-BUILD_TYPE=Release
cmake --build . --parallel 8
- name: Set Executable Permissions to All
run: chmod +x 01_Trimesh_Tiling/${{ matrix.artifact_name }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit beae2c8

Please sign in to comment.