Add CultureInfo to ILocale #27
Workflow file for this run
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: Dev Build | |
on: | |
push: | |
branches: | |
- publish-dev/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check License Lines | |
uses: kt3k/[email protected] | |
- name: Build | |
run: dotnet build Mindbox.I18n.sln --configuration Release | |
- name: Test | |
run: dotnet test Mindbox.I18n.sln --no-build --configuration Release | |
- name: Pack | |
run: dotnet pack Mindbox.I18n.sln -c Release -p:BuildNumber=${{ github.run_number }} -p:VersionTag="-dev" | |
- name: Publish | |
run: dotnet nuget push **/*.nupkg -k ${{secrets.MINDBOX_NUGET_AUTH_TOKEN}} -s https://www.nuget.org/api/v2/package |