Skip to content

Commit 9163b98

Browse files
committed
fix linter
1 parent 98cd1a4 commit 9163b98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414

15-
check-version: # ---------------------------------------------------------------------
15+
check-version: # --------------------------------------------------------------------
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
@@ -22,7 +22,7 @@ jobs:
2222
id: get
2323
run: |
2424
echo "NEW_VERSION=$(echo '${{ github.ref_name }}' | cut -c2-)" | tee -a $GITHUB_OUTPUT
25-
echo "OLD_VERSION=$(curl -s https://pypi.org/pypi/readchar/json | jq -r .info.version)" | tee -a $GITHUB_OUTPUT
25+
echo "OLD_VERSION=$(curl -s https://pypi.org/pypi/readchar/json |jq -r .info.version)" | tee -a $GITHUB_OUTPUT
2626
2727
- name: validate version
2828
id: valid
@@ -40,7 +40,7 @@ jobs:
4040
version: ${{ steps.get.outputs.NEW_VERSION }}
4141

4242

43-
tag: # -------------------------------------------------------------------------------
43+
tag: # ------------------------------------------------------------------------------
4444
runs-on: ubuntu-latest
4545
needs: check-version
4646
permissions:
@@ -100,7 +100,7 @@ jobs:
100100
# run: twine upload dist/*
101101

102102

103-
increment: # -------------------------------------------------------------------------
103+
increment: # ------------------------------------------------------------------------
104104
runs-on: ubuntu-latest
105105
needs: deploy
106106
steps:

0 commit comments

Comments
 (0)