Update ElsaStudio package version to use a variable
Switched ElsaStudio package versions to use a property variable for easier management and consistency. Also, adjusted the YAML workflow to tag Docker images with the specific version 3.2.0-rc3.
This commit is contained in:
parent
e2f2f61400
commit
1e95b6f847
2
.github/workflows/elsa-server-and-studio.yml
vendored
2
.github/workflows/elsa-server-and-studio.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
# list of Docker images to use as base name for tags
|
# list of Docker images to use as base name for tags
|
||||||
images: |
|
images: |
|
||||||
elsaworkflows/elsa-server-and-studio-v3
|
elsaworkflows/elsa-server-and-studio-v3:3.2.0-rc3
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=true
|
latest=true
|
||||||
# generate Docker tags based on the following events/attributes
|
# generate Docker tags based on the following events/attributes
|
||||||
|
|
|
||||||
|
|
@ -1,30 +1,32 @@
|
||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors>Elsa Workflows Community</Authors>
|
<Authors>Elsa Workflows Community</Authors>
|
||||||
<Copyright>2023</Copyright>
|
<Copyright>2023</Copyright>
|
||||||
|
|
||||||
<PackageProjectUrl>https://github.com/elsa-workflows/elsa-core</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/elsa-workflows/elsa-core</PackageProjectUrl>
|
||||||
<RepositoryUrl>https://github.com/elsa-workflows/elsa-core</RepositoryUrl>
|
<RepositoryUrl>https://github.com/elsa-workflows/elsa-core</RepositoryUrl>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
|
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
|
|
||||||
<!-- For NuGet browsers that currently don't support <PackageIcon> yet -->
|
<!-- For NuGet browsers that currently don't support <PackageIcon> yet -->
|
||||||
<PackageIconUrl>https://v3.elsaworkflows.io/nuget-icon.png</PackageIconUrl>
|
<PackageIconUrl>https://v3.elsaworkflows.io/nuget-icon.png</PackageIconUrl>
|
||||||
|
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
||||||
<AnalysisModeDocumentation>Default</AnalysisModeDocumentation>
|
|
||||||
<AnalysisLevelDocumentation>latest</AnalysisLevelDocumentation>
|
|
||||||
|
|
||||||
<!-- https://github.com/dotnet/sourcelink -->
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<IncludeSymbols>true</IncludeSymbols>
|
<AnalysisModeDocumentation>Default</AnalysisModeDocumentation>
|
||||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
<AnalysisLevelDocumentation>latest</AnalysisLevelDocumentation>
|
||||||
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
|
<!-- https://github.com/dotnet/sourcelink -->
|
||||||
|
<IncludeSymbols>true</IncludeSymbols>
|
||||||
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||||
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ElsaStudioVersion>3.2.0-rc3.417</ElsaStudioVersion>
|
||||||
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -23,9 +23,9 @@
|
||||||
<PackageVersion Include="DistributedLock.Postgres" Version="1.1.0" />
|
<PackageVersion Include="DistributedLock.Postgres" Version="1.1.0" />
|
||||||
<PackageVersion Include="DistributedLock.Redis" Version="1.0.3" />
|
<PackageVersion Include="DistributedLock.Redis" Version="1.0.3" />
|
||||||
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="8.14.0" />
|
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="8.14.0" />
|
||||||
<PackageVersion Include="Elsa.Studio" Version="3.2.0-rc2.369" />
|
<PackageVersion Include="Elsa.Studio" Version="$(ElsaStudioVersion)" />
|
||||||
<PackageVersion Include="Elsa.Studio.Core.BlazorWasm" Version="3.2.0-rc2.369" />
|
<PackageVersion Include="Elsa.Studio.Core.BlazorWasm" Version="$(ElsaStudioVersion)" />
|
||||||
<PackageVersion Include="Elsa.Studio.Login.BlazorWasm" Version="3.2.0-rc2.369" />
|
<PackageVersion Include="Elsa.Studio.Login.BlazorWasm" Version="$(ElsaStudioVersion)" />
|
||||||
<PackageVersion Include="FastEndpoints" Version="5.26.0" />
|
<PackageVersion Include="FastEndpoints" Version="5.26.0" />
|
||||||
<PackageVersion Include="FastEndpoints.Security" Version="5.26.0" />
|
<PackageVersion Include="FastEndpoints.Security" Version="5.26.0" />
|
||||||
<PackageVersion Include="FastEndpoints.Swagger" Version="5.26.0" />
|
<PackageVersion Include="FastEndpoints.Swagger" Version="5.26.0" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue