forked from OpenRA/OpenAL-CS
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 837 Bytes
/
build-openal.yml
File metadata and controls
33 lines (27 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Build OpenAL-CS
on:
pull_request:
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
compile:
name: Compile OpenAL-CS
runs-on: ubuntu-22.04
steps:
- name: Clone Repository
uses: actions/checkout@v4
# Since OpenAL-CS.csproj targets netstandard2.0 we don't need .NET 6, but let's not risk having outdated support for older versions.
- name: Install .NET 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Compile
run: |
dotnet build OpenAL-CS.sln
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: OpenAL-CS
path: ./bin