upload artifacts
This commit is contained in:
parent
cb423f2dbc
commit
11e5c52771
|
|
@ -30,6 +30,12 @@ jobs:
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: windows-build
|
||||||
|
path: build/bin/Release/msdf-atlas-gen.exe
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
@ -53,6 +59,12 @@ jobs:
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: linux-build
|
||||||
|
path: build/bin/msdf-atlas-gen
|
||||||
|
|
||||||
build-mac-x64:
|
build-mac-x64:
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
|
||||||
|
|
@ -76,6 +88,12 @@ jobs:
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: mac-x64-build
|
||||||
|
path: build/bin/msdf-atlas-gen
|
||||||
|
|
||||||
build-mac-arm64:
|
build-mac-arm64:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
|
@ -98,3 +116,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: mac-arm64-build
|
||||||
|
path: build/bin/msdf-atlas-gen
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue