Skip to content

Commit bf55c03

Browse files
committed
Alteração das configurações no ambiente de deploy
1 parent cab34e5 commit bf55c03

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
- 'v*'
77

88
env:
9+
PROJECT_OUTPUT_PATH: ${{ github.workspace }}/output
910
PROJECT_PATH: 'DotNet.IXC.ORM/DotNet.IXC.ORM.csproj'
1011
PROJECT_TEST_PATH: 'DotNet.IXC.ORM.Test/DotNet.IXC.ORM.Test.csproj'
11-
PROJECT_OUTPUT_DIRECTORY: ${{ github.workspace }}/output
1212

1313
jobs:
1414
build:
@@ -53,7 +53,7 @@ jobs:
5353
deploy:
5454
runs-on: ubuntu-latest
5555
needs: test
56-
environment: NuGetRelease
56+
environment: NuGet
5757
steps:
5858
- uses: actions/checkout@v4
5959

@@ -71,11 +71,11 @@ jobs:
7171
--no-build \
7272
--configuration Release \
7373
--include-symbols \
74-
--output ${{ env.PROJECT_OUTPUT_DIRECTORY }}
74+
--output ${{ env.PROJECT_OUTPUT_PATH }}
7575
7676
- name: Deploy
7777
run: |
78-
dotnet nuget push "${{ env.PROJECT_OUTPUT_DIRECTORY }}/*.nupkg" \
78+
dotnet nuget push "${{ env.PROJECT_OUTPUT_PATH }}/*.nupkg" \
7979
--api-key ${{ secrets.NUGET_API_KEY }} \
8080
--source https://api.nuget.org/v3/index.json \
8181
--skip-duplicate

DotNet.IXC.ORM/DotNet.IXC.ORM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<Description>Biblioteca ORM para consumo de dados da API do sistema IXC Provedor</Description>
1717
<PackageId>IXC.ORM</PackageId>
1818
<PackageTags>IXC ORM Provedor</PackageTags>
19-
<Version>1.0.5</Version>
19+
<Version>1.0.6</Version>
2020
<Company>FSL Telecom</Company>
2121
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2222
<PackageReadmeFile>README-NUGET.md</PackageReadmeFile>

README-NUGET.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Após o download, certifique-se de que a dependência foi adicionada ao seu .csp
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="IXC.ORM" Version="1.0.5" />
23+
<PackageReference Include="IXC.ORM" Version="1.0.6" />
2424
...
2525
</ItemGroup>
2626
...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Após o download, certifique-se de que a dependência foi adicionada ao seu .csp
3131
</PropertyGroup>
3232

3333
<ItemGroup>
34-
<PackageReference Include="IXC.ORM" Version="1.0.5" />
34+
<PackageReference Include="IXC.ORM" Version="1.0.6" />
3535
...
3636
</ItemGroup>
3737
...

0 commit comments

Comments
 (0)