Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
Improved main action
Browse files Browse the repository at this point in the history
  • Loading branch information
jaime-olivares committed Jul 1, 2024
1 parent 415576d commit cfefe6d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 54 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
- name: Compile source
run: dotnet build src/*.csproj --configuration Release
- name: Run unit tests
Expand All @@ -29,11 +29,11 @@ jobs:
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
- name: Prepare NuGet package
run: dotnet pack **/HL7-dotnetcore.csproj --configuration Release
- name: Publish NuGet package
Expand Down
47 changes: 0 additions & 47 deletions azure-pipelines.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/HL7-dotnetcore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>Lightweight HL7 2.x library compatible with .Net Standard and .Net Core</Description>
<Copyright>(c) Efferent Health, LLC</Copyright>
<VersionPrefix>2.38.1</VersionPrefix>
<VersionPrefix>2.38.2</VersionPrefix>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssemblyName>HL7-dotnetcore</AssemblyName>
<PackageId>HL7-dotnetcore</PackageId>
Expand Down

0 comments on commit cfefe6d

Please sign in to comment.