Skip to content

Commit

Permalink
Removed auto release and created a pull request template
Browse files Browse the repository at this point in the history
  • Loading branch information
ByronMayne committed Sep 13, 2023
1 parent fff2e21 commit 5e7d785
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
category: feature
---
Short description of what work was done with this pull request
More details that people will most likely not read
12 changes: 1 addition & 11 deletions .github/workflows/publish_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,4 @@ jobs:
- name: Pack
run: dotnet msbuild -t:pack ${Solution_Path} -p:PackageVersion=${{env.GitVersion_NuGetVersion}} -p:NoBuild=true
- name: Push
run: dotnet nuget push ./src/Extended.Collections/bin/${Configuration}/*.nupkg --skip-duplicate --api-key ${{secrets.NuGet_Api_Key}} --source ${{vars.Nuget_Source_Url}}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.rf }}
draft: false
prerelease: export v=$([[ -z "${{env.GitVersion_PreReleaseTag}}" ]] && echo "false" || echo "true")
run: dotnet nuget push ./src/Extended.Collections/bin/${Configuration}/*.nupkg --skip-duplicate --api-key ${{secrets.NuGet_Api_Key}} --source ${{vars.Nuget_Source_Url}}

0 comments on commit 5e7d785

Please sign in to comment.