Skip to content

Commit

Permalink
Initial version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin113D committed Nov 6, 2023
0 parents commit 1e5a44d
Show file tree
Hide file tree
Showing 147 changed files with 26,941 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: Build Project and Publish
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'

- name: "Setup Library SDKs & Components"
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/setup-sdks-components@main

- name: Build
run: dotnet build -c Release ./src

- name: "Upload Packages"
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/upload-packages@main
with:
nuget-key: ${{ secrets.NUGET_KEY }}
is-release: ${{ startsWith(github.ref, 'refs/tags/') }}
release-tag: ${{ github.ref_name }}
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: Build Project

on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'

- name: "Setup Library SDKs & Components"
uses: X-Hax/SA3D.ProjectConfigurations/.github/actions/setup-sdks-components@main

- name: Build
run: dotnet build -c Release ./src
Loading

0 comments on commit 1e5a44d

Please sign in to comment.