Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert publish script, add invariant globalization to test project #29

Merged
merged 5 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@ on:
jobs:

publish:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ vars.DOTNET_VERSION }}

- name: Disable globalization support because of Ubuntu build machine
run: export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1

- name: Build sln to generate nupkg
run: dotnet build
Expand Down
6 changes: 3 additions & 3 deletions Tacta.EventStore/Tacta.EventStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<PackageIcon></PackageIcon>
<PackageProjectUrl>https://tacta.io/</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Version>1.6.6</Version>
<PackageVersion>1.6.6</PackageVersion>
<Version>1.6.7</Version>
<PackageVersion>1.6.7</PackageVersion>
<Title>Tacta EventStore Library</Title>
<PackageReleaseNotes>Patch publish script</PackageReleaseNotes>
<PackageReleaseNotes>Patch publish script 2</PackageReleaseNotes>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
Expand Down
Loading