Skip to content

Commit a6bb389

Browse files
committed
Add verbose option to release workflow
1 parent d602631 commit a6bb389

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
organization: viamrobotics
2121
username: ${{ github.actor }}
22-
token: ${{ secrets.GITHUB_TOKEN }}
22+
token: ${{ secrets.GITHUB_TOKEN }}
2323

2424
- name: cancelling
2525
uses: andymckay/[email protected]
@@ -31,13 +31,14 @@ jobs:
3131
with:
3232
file: "viam_sdk.*\\.whl"
3333
regex: true
34-
target: 'dist/'
34+
target: "dist/"
3535
version: tags/${{ github.event.release.tag_name }}
3636

3737
- name: Publish
3838
uses: pypa/gh-action-pypi-publish@release/v1
3939
with:
4040
password: ${{ secrets.PYPI_API_TOKEN }}
41+
verbose: true
4142

4243
- name: Notify Slack
4344
uses: slackapi/[email protected]

src/viam/resource/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ async def close(self):
105105
"""Safely shut down the resource and prevent further use.
106106
107107
Close must be idempotent. Later configuration may allow a resource to be "open" again.
108-
If a resource does not want or need a close function, it is assumed that the resource does not need to retun errors when future
108+
If a resource does not want or need a close function, it is assumed that the resource does not need to return errors when future
109109
non-Close methods are called.
110110
111111
::

0 commit comments

Comments
 (0)