Skip to content

Commit 58646e4

Browse files
committed
fix(ci): correct release workflow and resolve lint error
- Removes duplicate 'gh release create' step in python-publish.yml - Adds missing module docstring to server/__main__.py
1 parent df11584 commit 58646e4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/python-publish.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,6 @@ jobs:
9393
with:
9494
inputs: >-
9595
./dist/*.tar.gz ./dist/*.whl
96-
- name: Create GitHub Release
97-
env:
98-
GITHUB_TOKEN: ${{ github.token }}
99-
run: >-
100-
gh release create "$GITHUB_REF_NAME" --repo "$GITHUB_REPOSITORY"
101-
--notes ""
10296
- name: Upload artifact signatures to GitHub Release
10397
env:
10498
GITHUB_TOKEN: ${{ github.token }}

server/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Server entry point."""
2+
13
import sys
24

35
from server import main

0 commit comments

Comments
 (0)