Skip to content

Commit 91e1297

Browse files
authored
ci: pin GH-action semantic-release to v7.28.1 (#234)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent ef0278a commit 91e1297

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ jobs:
1515
concurrency: release
1616
steps:
1717
- name: Checkout code
18+
# see https://github.com/actions/checkout
1819
uses: actions/checkout@v3
1920
with:
2021
fetch-depth: 0
21-
- uses: actions/setup-python@v3
22+
- name: Setup python
23+
# see https://github.com/actions/setup-python
24+
uses: actions/setup-python@v3
2225
with:
2326
python-version: 3.9
2427
- name: Install dependencies
@@ -29,8 +32,11 @@ jobs:
2932
- name: View poetry version
3033
run: poetry --version
3134
- name: Python Semantic Release
32-
uses: relekang/python-semantic-release@master
35+
# see https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/github-actions.html
36+
# see https://github.com/relekang/python-semantic-release
37+
uses: relekang/[email protected]
3338
with:
3439
github_token: ${{ secrets.GITHUB_TOKEN }}
35-
pypi_token: ${{ secrets.PYPI_TOKEN }}
36-
40+
repository_username: __token__
41+
repository_password: ${{ secrets.PYPI_TOKEN }}
42+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)