You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,9 +53,9 @@ Push the tag.
53
53
When your repo is hosted by GitHub and you are using GitHub Actions, you should create a GitHub Release using the standard GitHub UI.
54
54
Having previously used `nbgv tag` and pushing the tag will help you identify the precise commit and name to use for this release.
55
55
56
-
After publishing the release, the `.github\workflows\release.yml` workflow will be automatically triggered, which will:
56
+
After publishing the release, the `.github/workflows/release.yml` workflow will be automatically triggered, which will:
57
57
58
-
1. Find the most recent `.github\workflows\build.yml` GitHub workflow run of the tagged release.
58
+
1. Find the most recent `.github/workflows/build.yml` GitHub workflow run of the tagged release.
59
59
1. Upload the `deployables` artifact from that workflow run to your GitHub Release.
60
60
1. If you have `NUGET_API_KEY` defined as a secret variable for your repo or org, any nuget packages in the `deployables` artifact will be pushed to nuget.org.
61
61
@@ -92,7 +92,7 @@ The best way to keep your repo in sync with Library.Template's evolving features
92
92
```ps1
93
93
git fetch
94
94
git checkout origin/main
95
-
.\tools\MergeFrom-Template.ps1
95
+
./tools/MergeFrom-Template.ps1
96
96
# resolve any conflicts, then commit the merge commit.
0 commit comments