Skip to content

Commit

Permalink
Fix versioning (#31)
Browse files Browse the repository at this point in the history
* fix versioning
  • Loading branch information
lolochristen authored Dec 29, 2023
1 parent 7ddacee commit aa4645a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ jobs:
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v3
- name: Config
run: git config --global --add safe.directory /github/workspace
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
filter: tree:0
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Config
run: git config --global --add safe.directory /github/workspace
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
- name: Build
Expand Down
4 changes: 4 additions & 0 deletions src/OpenLayers.Blazor/OpenLayers.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,8 @@
</PackageReference>
</ItemGroup>

<PropertyGroup>
<MinVerVerbosity>diagnostic</MinVerVerbosity>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down

0 comments on commit aa4645a

Please sign in to comment.