We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571dc96 commit a6610e6Copy full SHA for a6610e6
.github/workflows/publish-pypi.yaml
@@ -16,11 +16,11 @@ jobs:
16
id-token: write
17
contents: write
18
steps:
19
- - name: Checkout
20
- uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
21
+ fetch-tags: true
22
- - name: Set up Python
23
- uses: actions/setup-python@v5
+ - uses: actions/setup-python@v5
24
with:
25
python-version: '3.12'
26
cache: 'pip'
@@ -30,8 +30,7 @@ jobs:
30
python -m pip install --upgrade pip
31
pip install poetry python-semantic-release
32
33
- - name: Install dependencies
34
- run: poetry install --with dev --no-root
+ - run: poetry install --with dev --no-root
35
36
- name: Run semantic-release
37
run: semantic-release publish
0 commit comments