Erro para publicar o pacote com Actions #2
-
Ola balta, Ao tentar fazer a publicação, esta dando o seguinte erro : Já vi algumas coisas no google como : Pode me dar um help pf ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Boa noite, @vitor-HDevBetter como vai? A Key precisa estar configurada no Secrets como mostro no curso, o nome do pacote tem que ser único e estar referenciado no Segue outro exemplo de CSPROJ <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Flunt</PackageId>
<Version>2.0.5</Version>
<icon>https://baltaio.blob.core.windows.net/static/images/icons/flunt-icon.png</icon>
<License>MIT</License>
<Authors>André Baltieri</Authors>
<Company>balta.io</Company>
<PackageDescription>Notifications made easy</PackageDescription>
<Description>Notifications made easy</Description>
<RepositoryUrl>https://github.com/andrebaltieri/Flunt</RepositoryUrl>
<PackageProjectUrl>https://github.com/andrebaltieri/Flunt</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>Domain;DDD;Notification;Validation;Flunt</PackageTags>
<ReleaseNotes>Breaking changes from v1.5, please, visit our GitHub before migrating.</ReleaseNotes>
<Title>Flunt</Title>
<Summary>Flunt is a fluent way to use Notification Pattern with your entities, concentrating every change you made and easy accessing it when you need.</Summary>
</PropertyGroup>
<ItemGroup>
<None Include="..\Media\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
Este é o projeto do pacote Flunt |
Beta Was this translation helpful? Give feedback.
Boa noite, @vitor-HDevBetter como vai?
A Key precisa estar configurada no Secrets como mostro no curso, o nome do pacote tem que ser único e estar referenciado no
.csproj
e a URL do repositório no GitHub referenciada.Segue outro exemplo de CSPROJ