Skip to content

Commit

Permalink
use new tool in CI, add a test package to test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Jun 19, 2024
1 parent 72c831e commit a1a33e7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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:
Expand Down
14 changes: 14 additions & 0 deletions StagingArea/test/test@0.0.2.fsx
Original file line number Diff line number Diff line change
@@ -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!"

0 comments on commit a1a33e7

Please sign in to comment.