fixed workflows
This commit is contained in:
parent
d0e2014bb5
commit
7228e29fb0
3 changed files with 5 additions and 4 deletions
2
.github/workflows/create-release.yaml
vendored
2
.github/workflows/create-release.yaml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
run: dotnet pack -c release
|
run: dotnet pack -c release
|
||||||
|
|
||||||
- name: Push NuGet package
|
- name: Push NuGet package
|
||||||
run: dotnet nuget push "Edna/bin/Release/alterNERDtive.EDNA.*.nupkg" -source 'https://api.nuget.org/v3/index.json' -apikey ${{secrets.NUGET_AUTH_TOKEN}}
|
run: dotnet nuget push "Edna\bin\Release\alterNERDtive.EDNA.*.nupkg" --source 'https://api.nuget.org/v3/index.json' --api-key ${{secrets.NUGET_AUTH_TOKEN}}
|
||||||
|
|
||||||
- name: Draft release
|
- name: Draft release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
|
2
.github/workflows/push-test.yaml
vendored
2
.github/workflows/push-test.yaml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Run tests on push push
|
name: Run tests on push
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push
|
push
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
<PackageId>alterNERDtive.EDNA</PackageId>
|
<PackageId>alterNERDtive.EDNA</PackageId>
|
||||||
<Version>0.0.1</Version>
|
<Version>0.0.1</Version>
|
||||||
<Company>alterNERDtive</Company>
|
<Company>alterNERDtive</Company>
|
||||||
<Authors>alteNERDtive</Authors>
|
<Authors>alterNERDtive</Authors>
|
||||||
<Description>EDNA is a site-agnostic library for accessing 3rd-party information about star systems in Elite Dangerous.</Description>
|
<Description>EDNA is a site-agnostic library for accessing 3rd-party information about star systems in Elite Dangerous.</Description>
|
||||||
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
||||||
<PackageProjectUrl>https://alterNERDtive.github.io/EDNA</PackageProjectUrl>
|
<PackageProjectUrl>https://alterNERDtive.github.io/EDNA</PackageProjectUrl>
|
||||||
<Copyright>© 2021 alterNERDtive</Copyright>
|
<Copyright>© 2021–2022 alterNERDtive</Copyright>
|
||||||
<PackageIcon>glider.jpg</PackageIcon>
|
<PackageIcon>glider.jpg</PackageIcon>
|
||||||
<PackageIconUrl />
|
<PackageIconUrl />
|
||||||
<RepositoryUrl>https://github.com/alterNERDtive/EDNA</RepositoryUrl>
|
<RepositoryUrl>https://github.com/alterNERDtive/EDNA</RepositoryUrl>
|
||||||
|
@ -38,6 +38,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
|
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
|
||||||
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
|
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
|
||||||
|
|
Loading…
Reference in a new issue