chore: initial commit #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build' | |
on: | |
- 'push' | |
jobs: | |
release: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- name: 'Setup .NET Core SDK' | |
uses: 'actions/setup-dotnet@v3' | |
with: | |
dotnet-version: '7.0.x' | |
- name: 'Build' | |
run: 'dotnet build ZenKit -c Release -o __build && dotnet pack -c Release -o ./__publish/ -v detailed ZenKit' | |
- name: 'Publish' | |
uses: 'actions/upload-artifact@v3' | |
with: | |
name: 'NuGet Package' | |
path: '__publish' | |
- name: 'Copy Artifacts' | |
run: 'mkdir Artifacts && mv ZenKit/runtimes Artifacts/ && cp __build/ZenKit.dll Artifacts/ && echo "Copy the native library for your OS from the `runtime` folder into the same folder `ZenKit.dll` is in." > Artifacts/README.md' | |
- name: 'Publish' | |
uses: 'actions/upload-artifact@v3' | |
with: | |
name: 'Managed DLL' | |
path: 'Artifacts' |