Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Write temp file to mark staging directory as incomplete until extract… #363

Write temp file to mark staging directory as incomplete until extract…

Write temp file to mark staging directory as incomplete until extract… #363

Workflow file for this run

name: Build Squirrel (Windows)
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
- name: "Install NGBV"
run: dotnet tool install --tool-path . nbgv
- name: Build
shell: pwsh
run: .\build.ps1
- name: Create NuGet Package
shell: pwsh
run: .\pack.ps1
- name: Test
run: dotnet test test\Squirrel.Tests.csproj -l "console;verbosity=detailed"
- name: "Upload Tools"
uses: actions/upload-artifact@v3
with:
path: .\build\SquirrelTools*.zip
if-no-files-found: error
- name: "Upload NuGet Package"
uses: actions/upload-artifact@v3
with:
path: .\build\Clowd.Squirrel*.nupkg
if-no-files-found: error