Fix date #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nuget Pack | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Pack | |
run: dotnet pack | |
- name: Upload Execution Contexts package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Execution Contexts Package' | |
path: 'MPF.ExecutionContexts/bin/Release/*.nupkg' | |
- name: Upload Execution Contexts to rolling | |
uses: ncipollo/release-action@v1.14.0 | |
with: | |
allowUpdates: True | |
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 | |
replacesArtifacts: True | |
tag: "rolling" | |
updateOnlyUnreleased: True |