Skip to content

Commit

Permalink
Add release info
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Mar 15, 2022
1 parent b3e4c84 commit 22ae365
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,16 @@ inputs:
required: false
default: 'false'
```


## Releasing `pyright-action`

GitHub actions are generally versoned with tags, including a tag like `v1` which moves
to always point to the latest release. This is unfortunately not how tags are supposed
to work (best to be immutable), so until GHA can support checking tags by semver, releases
are made by doing something like:

```
$ git tag v1.0.4 && git push --tags
$ git tag -d v1 && git push origin :refs/tags/v1 && git tag v1 && git push origin v1
```

0 comments on commit 22ae365

Please sign in to comment.