Skip to content

Commit

Permalink
chore: Fix description code. My bad.
Browse files Browse the repository at this point in the history
  • Loading branch information
lynzrand committed Jun 13, 2020
1 parent 277adf6 commit 2e8b370
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,14 @@ jobs:
encoding='utf8') as template_file:
template = template_file.read()
template = re.sub('\{version\}', escape(version), template)
template = re.sub('\{description\}', escape(description), template)
# template = re.sub('\{description\}', escape(description), template)
with open('dist/choco/pacaptr.nuspec', 'w', encoding='utf8') as output:
output.write(template)
print('Output file:')
- name: Check nuget template
run: cat dist/choco/pacaptr.nuspec
run: |
echo "NuGet spec file:"
cat dist/choco/pacaptr.nuspec
- name: Set choco api key
run: choco apikey --key ${{ secrets.CHOCO_API_KEY }} --source https://push.chocolatey.org --verbose
Expand Down

0 comments on commit 2e8b370

Please sign in to comment.