Skip to content

Commit 9f195d8

Browse files
committed
Initial version 1.0.0
0 parents  commit 9f195d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+9464
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: Build Project and Publish
5+
on:
6+
push:
7+
tags:
8+
- "[0-9]+.[0-9]+.[0-9]+"
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
submodules: 'recursive'
20+
21+
- name: "Setup Library SDKs & Components"
22+
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/setup-sdks-components@main
23+
24+
- name: Build
25+
run: dotnet build -c Release ./src
26+
27+
- name: "Upload Packages"
28+
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/upload-packages@main
29+
with:
30+
nuget-key: ${{ secrets.NUGET_KEY }}
31+
is-release: ${{ startsWith(github.ref, 'refs/tags/') }}
32+
release-tag: ${{ github.ref_name }}

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: Build Project
5+
6+
on:
7+
push:
8+
branches: [ "dev", "main" ]
9+
pull_request:
10+
branches: [ "dev", "main" ]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout Code
18+
uses: actions/checkout@v3
19+
with:
20+
fetch-depth: 0
21+
submodules: 'recursive'
22+
23+
- name: "Setup Library SDKs & Components"
24+
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/setup-sdks-components@main
25+
26+
- name: Build
27+
run: dotnet build -c Release ./src

0 commit comments

Comments
 (0)