Skip to content

Commit 8dc73e4

Browse files
authored
Update release scripts (#165)
1 parent 1edeb6e commit 8dc73e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nuget_upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
- name: Pack
2323
run: nuget pack dropbox-sdk-dotnet\Dropbox.Api\Dropbox.Api.nuspec
2424
- name: Publish
25-
run: nuget push *.nupkg -ApiKey ${{ secrets.NUGET_TOKEN }}
25+
run: nuget push *.nupkg -ApiKey=${{ secrets.NUGET_TOKEN }}

scripts/release_note_generator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ echo "Getting commit history since $last_version"
55
num_commits=$(git rev-list --count $last_version..HEAD)
66
echo "Found $num_commits commits since last revision"
77
git_log=$(git log -n $num_commits --pretty="format:* %s %n")
8-
linked_log=$(echo "Release Notes: \n\n$git_log" | sed -e 's/#\([0-9]*\)/[#\1](github.com\/dropbox\/dropbox-sdk-dotnet\/pull\/\1)/g')
8+
linked_log=$(echo "Release Notes: \n\n$git_log" | sed -e 's/#\([0-9]*\)/[#\1](https:\/\/github.com\/dropbox\/dropbox-sdk-dotnet\/pull\/\1)/g')
99
echo "\n\n$linked_log"

0 commit comments

Comments
 (0)