Fix incorrect sign inversion logic for grid power balance in `SmlValu… #3
Workflow file for this run
This file contains hidden or 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: release | |
| concurrency: | |
| group: release-${{ github.ref }} | |
| cancel-in-progress: false | |
| on: | |
| push: | |
| tags: | |
| - 'v**' | |
| jobs: | |
| ubuntu-latest: | |
| name: ubuntu-latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: 'Cache: ~/.nuget/packages' | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.nuget/packages | |
| key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }} | |
| - name: 'Build with target: NuGetPush' | |
| run: ./build.cmd -t pack -t nugetpush -t publish -t createdistpackages -t creategithubrelease | |
| env: | |
| NUGET_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: 'Publish: coverage_report' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: coverage-report-linux | |
| path: .tests/coverage-report | |
| - name: 'Publish: cli dist package' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: SmartMeter.Cli | |
| path: .artifacts/dist/SmartMeter.Cli.tar.gz | |
| - name: 'Publish: server Linux dist package' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: SmartMeter.Server.Linux | |
| path: .artifacts/dist/SmartMeter.Server.Linux.tar.gz |