From 1a99fd9e710a5d3eae3136aa0064db4ed4d972f9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 20 Jun 2024 12:10:04 -0400 Subject: [PATCH] Forgot to upload packages to release --- .github/workflows/build_nupkg.yml | 28 ++++++++++++++++++++-------- CHANGELIST.md | 1 + 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_nupkg.yml b/.github/workflows/build_nupkg.yml index c297f711..c4bb8101 100644 --- a/.github/workflows/build_nupkg.yml +++ b/.github/workflows/build_nupkg.yml @@ -30,17 +30,29 @@ jobs: name: 'Execution Contexts Package' path: 'MPF.ExecutionContexts/bin/Release/*.nupkg' - - name: Upload Processors package - uses: actions/upload-artifact@v4 - with: - name: 'Processors Package' - path: 'MPF.Processors/bin/Release/*.nupkg' - - - name: Upload to rolling + - name: Upload Execution Contexts to rolling uses: ncipollo/release-action@v1.14.0 with: allowUpdates: True - artifacts: 'BinaryObjectScanner/bin/Release/*.nupkg' + artifacts: 'MPF.ExecutionContexts/bin/Release/*.nupkg' + body: 'Last built commit: ${{ github.sha }}' + name: 'Rolling Release' + prerelease: True + replacesArtifacts: True + tag: "rolling" + updateOnlyUnreleased: True + + - name: Upload Processors package + uses: actions/upload-artifact@v4 + with: + name: 'Processors Package' + path: 'MPF.Processors/bin/Release/*.nupkg' + + - name: Upload Execution Contexts to rolling + uses: ncipollo/release-action@v1.14.0 + with: + allowUpdates: True + artifacts: 'MPF.Processors/bin/Release/*.nupkg' body: 'Last built commit: ${{ github.sha }}' name: 'Rolling Release' prerelease: True diff --git a/CHANGELIST.md b/CHANGELIST.md index 4310908b..660d78a0 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -4,6 +4,7 @@ - Address build warnings for packages - Add Linux ARM64 as target by default - Fix nuget package naming +- Forgot to upload packages to release ### 3.2.0 (2024-06-20)