Skip to content

fix(test): tests fail if dotnet isnt on the path #8

fix(test): tests fail if dotnet isnt on the path

fix(test): tests fail if dotnet isnt on the path #8

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_publish --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: publish
on:
push:
branches:
- main
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- 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: Publish'
run: ./build.cmd Publish
env:
CodecovToken: ${{ secrets.CODECOV_TOKEN }}
PublicNuGetApiKey: ${{ secrets.PUBLIC_NUGET_API_KEY }}
- name: 'Publish: test-results'
uses: actions/upload-artifact@v3
with:
name: test-results
path: artifacts/test-results
- name: 'Publish: packages'
uses: actions/upload-artifact@v3
with:
name: packages
path: artifacts/packages