Skip to content

Commit e8cbd85

Browse files
authored
Merge pull request #1323 from aholmes/aholmes-fix-github-release-automation
Fix issue with creation of GitHub release caused by missing cli switch
2 parents 9c3099b + f1c623c commit e8cbd85

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/guides/github-actions-ci-cd-sample/publish-to-test-pypi.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,12 @@ jobs:
7474
./dist/*.tar.gz
7575
./dist/*.whl
7676
- name: Create GitHub Release
77+
env:
78+
GITHUB_TOKEN: ${{ github.token }}
7779
run: >-
7880
gh release create
7981
'${{ github.ref_name }}'
82+
--repo '${{ github.repository }}'
8083
--notes ""
8184
- name: Upload artifact signatures to GitHub Release
8285
env:

0 commit comments

Comments
 (0)