You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Frankly, the emailing itself has always ended up being flakier than running the tests. This isn't providing a value-add. (At least to me, and I maintain this project 😈)
Copy file name to clipboardExpand all lines: README.md
-11Lines changed: 0 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,6 @@ This action will:
12
12
- An annotated git tag is added;
13
13
- A GitHub Release is made
14
14
- The sdist and wheel are both uploaded to PyPI.
15
-
- You will receive an email confirming the success.
16
-
- Else:
17
-
- You will receive an email reporting the failure.
18
15
19
16
### Usage
20
17
@@ -47,10 +44,6 @@ jobs:
47
44
pypi-token: ${{ secrets.pypi_token }}
48
45
github-user: your-username-here
49
46
github-token: ${{ github.token }} # automatically created token
50
-
email-user: your-email-here@example.com
51
-
email-token: ${{ secrets.email_token }}
52
-
email-server: example.com:587
53
-
email-target: your-email-here@example.com
54
47
```
55
48
56
49
This will run every time the `main` branch is updated. If the version has updated, then it will trigger things as described above.
@@ -65,10 +58,6 @@ The following are options for passing to `with`:
65
58
-`pypi-token`: What password or token to use when pushing to PyPI.
66
59
-`github-user`: What GitHub user to use when authenticating the release with GitHub.
67
60
-`github-token`: What GitHub token to use when authenticating the release with GitHub.
68
-
-`email-user`: What email to send success/failure notifications from.
69
-
-`email-token`: The corresponding password.
70
-
-`email-server`: Address of the SMTP server; `email-user` and `email-token` will be used to authenticate with this server. This must not have any "https://" prefix. It must include a port number at the end; on most servers this will be 587.
71
-
-`email-target`: What email to send success/failure notifications to.
0 commit comments