From a1a33e7ed9c45062bfc29bbf04934fbea17bc8b2 Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Wed, 19 Jun 2024 15:08:23 +0200 Subject: [PATCH] use new tool in CI, add a test package to test pipeline --- .github/workflows/pipeline.yml | 4 ++-- StagingArea/test/test@0.0.2.fsx | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 StagingArea/test/test@0.0.2.fsx diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 6385975..44f3846 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -228,7 +228,7 @@ jobs: - name: Run pre-publish checks id: ppc run: | - dotnet fsi scripts/pre-publish-checks.fsx + dotnet run --project .\src\AVPRCI\AVPRCI.fsproj -- --verbose check - name: set-output id: set-output run: | @@ -253,7 +253,7 @@ jobs: with: dotnet-version: 8.x.x - name: re-generate preview index - run: dotnet fsi scripts/generate-preview-index.fsx + run: dotnet run --project .\src\AVPRCI\AVPRCI.fsproj -- --verbose gen-index - name: publish preview index uses: "marvinpinto/action-automatic-releases@latest" with: diff --git a/StagingArea/test/test@0.0.2.fsx b/StagingArea/test/test@0.0.2.fsx new file mode 100644 index 0000000..6cf067c --- /dev/null +++ b/StagingArea/test/test@0.0.2.fsx @@ -0,0 +1,14 @@ +(* +--- +Name: test +Summary: this package is here for testing purposes only. +Description: this package is here for testing purposes only. +MajorVersion: 0 +MinorVersion: 0 +PatchVersion: 2 +Publish: false +--- +*) + +// this file is intended for testing purposes only. +printfn "If you can read this in your console, you successfully executed test package v0.0.2!" \ No newline at end of file