Skip to content

Commit

Permalink
Merge branch 'release/3.816.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
vc-ci committed Jun 4, 2024
2 parents 347c6d8 + 3094d5a commit a0251f4
Show file tree
Hide file tree
Showing 16 changed files with 6,685 additions and 113 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/module-sample-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.0.1
# v1.1.0
name: Module Sample CI

on:
Expand All @@ -17,7 +17,7 @@ jobs:
ci:
strategy:
matrix:
projectName: ['SampleModule.Web']
projectName: ['OrdersModule2.Web']

if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request.head.repo.full_name == github.repository || github.event.pull_request.head.repo.full_name == '') }} # Check that PR not from forked repo and not from Dependabot
runs-on: ubuntu-latest
Expand All @@ -44,12 +44,18 @@ jobs:
run: |
echo "RELEASE_STATUS=true" >> $GITHUB_ENV
- name: Set up JDK 11 for dotnet-sonarscanner #Sonar stop accepting Java versions less than 11
uses: actions/setup-java@v1
- name: Set up Node 20
uses: actions/setup-node@v4
with:
java-version: 1.11
node-version: '20'

- uses: actions/checkout@v2
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -165,7 +171,8 @@ jobs:
echo "Jira Upload Build Info response: ${{ steps.push_build_info_to_jira.outputs.response }}"
deploy:
if: ${{ github.ref == 'refs/heads/dev' && github.event_name != 'workflow_dispatch' }}
if: false
#if: ${{ github.ref == 'refs/heads/dev' && github.event_name != 'workflow_dispatch' }}
needs: ci
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<!-- These properties will be shared for all projects -->
<PropertyGroup>
<VersionPrefix>3.815.0</VersionPrefix>
<VersionPrefix>3.816.0</VersionPrefix>
<VersionSuffix>
</VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="VirtoCommerce.Platform.Data.SqlServer" Version="3.825.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\VirtoCommerce.OrdersModule.Core\VirtoCommerce.OrdersModule.Core.csproj" />
<ProjectReference Include="..\..\src\VirtoCommerce.OrdersModule.Data\VirtoCommerce.OrdersModule.Data.csproj" />
<ProjectReference Include="..\..\src\VirtoCommerce.OrdersModule.Web\VirtoCommerce.OrdersModule.Web.csproj" />
</ItemGroup>
</Project>
Loading

0 comments on commit a0251f4

Please sign in to comment.