jfhbrook / pyee

A rough port of Node.js's EventEmitter to Python with a few tricks of its own
https://github.com/jfhbrook/public
MIT License
371 stars 39 forks source link

Fix release action #160

Closed jfhbrook closed 2 months ago

jfhbrook commented 2 months ago

ActionLint was reporting that the action I was using to create a GitHub release was deprecated. So, I went back to the drawing board.

First, I found a fork of the origin GitHub release action, and I slapped that in place. It has significant differences from the one I was using, namely that it didn't support uploading files. So I then followed this blog post and manually added the files with the gh CLI.

Of course, now I'm wondering if the blessed path is, in fact, to use the CLI to create the release.

jfhbrook commented 2 months ago

Leroy Jenkins