Skip to content

Prepare v1.6.2

Prepare v1.6.2 #125

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [DotNetGitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_build --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: build
on:
push:
branches:
- main
workflow_dispatch:
inputs:
dummy:
description: "dummy"
required: false
jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .Net 6.0.*
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.*
- name: Setup .Net 7.0.*
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.*
- name: Setup .Net 8.0.*
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.*
- name: Setup Java (for SonarCloud)
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 20
java-package: jre
- name: Setup Ruby (for building docs with Jekyll)
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('global.json', 'src/**/*.csproj') }}
- name: 'Run: CiCd_Build'
run: ./build.cmd CiCd_Build
env:
dummy: ${{ github.event.inputs.dummy }}
SonarToken: ${{ secrets.SONAR_TOKEN }}
- name: 'Publish: TestResults'
uses: actions/upload-artifact@v3
with:
name: TestResults
path: src/develop/DryGen.UTests/TestResults
- name: 'Publish: artifacts'
uses: actions/upload-artifact@v3
with:
name: artifacts
path: artifacts
- name: 'Publish: TestResults'
uses: actions/upload-artifact@v3
with:
name: TestResults
path: src/develop/DryGen.ITests/TestResults