Skip to content

Commit 88a86c2

Browse files
committed
WIP Workflow
1 parent 54934d3 commit 88a86c2

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
path: /output/*.nupkg
6363

6464
- name: Upload Package to release
65-
if: contains(github.ref, 'main')
65+
# if: contains(github.ref, 'main')
6666
uses: svenstaro/upload-release-action@v1-release
6767
with:
6868
repo_token: ${{ secrets.GITHUB_TOKEN }}
@@ -72,5 +72,5 @@ jobs:
7272
overwrite: true
7373

7474
- name: Upload Package to nuget
75-
if: contains(github.ref, 'main')
76-
run: dotnet nuget push /output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}
75+
# if: contains(github.ref, 'main')
76+
run: dotnet nuget push output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}

source/Marten.AspNetCore.Identity/Marten.AspNetCore.Identity.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
<PackageTags>aspnetcore marten identity membership</PackageTags>
1717
<RepositoryUrl>https://github.com/soernt/AspNetCore.Identity.Marten</RepositoryUrl>
1818
<RepositoryType>Git</RepositoryType>
19-
<!-- Versioning -->
20-
<PackageVersion>0.1.0</PackageVersion>
21-
<Version>0.1.0</Version>
22-
<FileVersion>0.1.0</FileVersion>
19+
<!--
20+
Versioning will be handled by the GithHub Workflow
21+
-->
2322
</PropertyGroup>
2423

2524
<PropertyGroup>

0 commit comments

Comments
 (0)