Merge pull request #3 from edgegamers/dev #23
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
# 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: Nightlies | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
show-progress: true, | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- run: | | |
dotnet restore | |
dotnet build EloReputation.csproj --no-restore | |
dotnet publish EloReputation.csproj --no-build --no-restore | |
- uses: actions/upload-artifact@v4.0.0 | |
with: | |
name: elorep-nightly | |
path: build/ | |
# If build didn't put any artifacts in the build folder, consider it an error | |
if-no-files-found: error |