Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
142 changes: 0 additions & 142 deletions .github/workflows/changelog.yml

This file was deleted.

11 changes: 10 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ jobs:
- name: Publish Nuget Packages
run: dotnet nuget push packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate -n

#This workflow contains
tag:
runs-on: ubuntu-latest
needs: [build]
Expand All @@ -83,3 +82,13 @@ jobs:
run: |
echo "Version: ${{ needs.build.outputs.Version }}"
echo "CommitsSinceVersionSource: ${{ needs.build.outputs.CommitsSinceVersionSource }}"

- name: Create Tag and Release
id: create_release
uses: actions/create-release@v1.1.1
if: needs.build.outputs.CommitsSinceVersionSource > 0 # only create a release if there has been a commit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this token is provided by actions not need to create
with:
tag_name: ${{ needs.build.outputs.Version }}
release_name: Release ${{ needs.build.outputs.Version }}
Comment thread
kdcllc marked this conversation as resolved.
38 changes: 0 additions & 38 deletions CHANGELOG.md

This file was deleted.

8 changes: 5 additions & 3 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
mode: ContinuousDelivery
workflow: GitHubFlow/v1
mode: ContinuousDeployment
next-version: 2.0.0
branches:
master:
Expand All @@ -9,9 +10,10 @@ branches:
mode: ContinuousDelivery
label: useBranchName
regex: ^features?[/-]
dev:
develop:
mode: ContinuousDelivery
regex: ^dev$
label: preview
regex: ^dev(elop)?(ment)?$
ignore:
sha: []
merge-message-formats: {}
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,3 @@ Best practices:
## References

- [Shipping a cross-platform MSBuild task in a NuGet package](https://natemcmaster.com/blog/2017/07/05/msbuild-task-in-nuget/)

## Changelog

See [CHANGELOG.md](CHANGELOG.md) for a detailed history of changes to this project.
114 changes: 0 additions & 114 deletions scripts/generate-changelog.sh

This file was deleted.

Loading