Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,23 @@ Here are some useful links to the GitHub documentation:
- [Creating a JavaScript action](https://docs.github.com/en/actions/sharing-automations/creating-actions/creating-a-javascript-action)
- [OpenID Connect](https://docs.github.com/en/actions/security-for-github-actions/security-hardening-your-deployments/about-security-hardening-with-openid-connect)

## Publish the action

Once the `main` branch contains the latest changes,
you can publish a new version of the action by:

- Creating a new tag and release by clicking on "Draft a new release" from the
[GitHub releases UI](https://github.com/rust-lang/crates-io-auth-action/releases).
- Pushing the changes of the `main` branch to the `v1` branch. To do so, you can run:

```sh
git checkout main
git pull
git checkout v1
git reset --hard main
git push
```

## FAQ

### Why TypeScript?
Expand Down