Skip to content

initial implementation of saving/loading model changes history #93

initial implementation of saving/loading model changes history

initial implementation of saving/loading model changes history #93

Workflow file for this run

name: releasing
on:
push:
branches:
- master
- 'release/*'
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Publish'
run: ./build.cmd Publish
env:
RegistryApiKey: ${{ secrets.REGISTRY_API_KEY }}
- name: Code Coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
flags: unittests
- name: 'Publish: packages'
uses: actions/upload-artifact@v3
with:
name: packages
path: packages