File tree 1 file changed +6
-4
lines changed
source/guides/github-actions-ci-cd-sample
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@v4
12
+ with :
13
+ persist-credentials : false
12
14
- name : Set up Python
13
15
uses : actions/setup-python@v5
14
16
with :
78
80
GITHUB_TOKEN : ${{ github.token }}
79
81
run : >-
80
82
gh release create
81
- '${{ github.ref_name }}'
82
- --repo '${{ github.repository }}'
83
+ "$GITHUB_REF_NAME"
84
+ --repo "$GITHUB_REPOSITORY"
83
85
--notes ""
84
86
- name : Upload artifact signatures to GitHub Release
85
87
env :
89
91
# sigstore-produced signatures and certificates.
90
92
run : >-
91
93
gh release upload
92
- '${{ github.ref_name }}' dist/**
93
- --repo '${{ github.repository }}'
94
+ "$GITHUB_REF_NAME" dist/**
95
+ --repo "$GITHUB_REPOSITORY"
94
96
95
97
publish-to-testpypi :
96
98
name : Publish Python 🐍 distribution 📦 to TestPyPI
You can’t perform that action at this time.
0 commit comments