Skip to content

Commit db20c26

Browse files
committed
Fix pipelines
1 parent a94b566 commit db20c26

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/workflows/ContinuousIntegration.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
21
name: ContinuousIntegration Release NuGet
32

4-
# Controls when the action will run. Triggers the workflow on release
53
on:
64
release:
75
types: [published]
86

9-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
107
jobs:
11-
12-
# This workflow contains a single job called "build"
138
build:
14-
# The type of runner that the job will run on
159
runs-on: windows-latest
1610

17-
# Steps represent a sequence of tasks that will be executed as part of the job
1811
steps:
1912
- uses: actions/checkout@v2
2013
- name: Setup .NET Core
@@ -35,5 +28,5 @@ jobs:
3528
name: SR.EmberPlusConsumerLib.NetStandard
3629
path: ./src/Nuget.EmberPlusConsumerLib.NetStandard/bin/PackNuGet/SR.EmberPlusConsumerLib.NetStandard.${{ github.event.release.tag_name }}.nupkg
3730

38-
- name: Publish Nuget Package
31+
- name: Publish NuGet Package
3932
run: dotnet nuget push ./src/Nuget.EmberPlusConsumerLib.NetStandard/bin/PackNuGet/SR.EmberPlusConsumerLib.NetStandard.${{ github.event.release.tag_name }}.nupkg --skip-duplicate --no-symbols true -k ${{secrets.GITHUB_TOKEN}} -s https://nuget.pkg.github.com/sverigesradio/index.json

.github/workflows/ContinuousIntegrationDebug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: ContinuousIntegration Debug NuGet
32

43
on:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# EmBER+ consumer lib
22
A library that gives you the possibility to create an EmBER+ consumer.
33

4+
45
# How to use?
56
1. Add the NuGet package to your solution
67
2. Initiate the EmBER+ consumer

src/EmberLibConsumer.net/Lawo/Threading/NativeMethods.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public static class NativeMethods
1515
{
1616
/// <summary>Returns an integer that represents a unique identifier for the current managed thread.</summary>
1717
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate", Justification = "Expensive method.")]
18+
[CLSCompliant(false)]
1819
public static uint GetCurrentThreadId()
1920
{
2021
return Convert.ToUInt32(System.Threading.Thread.CurrentThread.ManagedThreadId);

0 commit comments

Comments
 (0)