An open API service indexing awesome lists of open source software.

https://github.com/davidcopano/github-actions-docs

Github Actions own documentation
https://github.com/davidcopano/github-actions-docs

Last synced: 10 months ago
JSON representation

Github Actions own documentation

Awesome Lists containing this project

README

          

# Github Actions Docs

Github Actions own documentation.

| Action | Steps to perform the action |
| ------------- | ------------- |
| Upload release to Github | 1) In the `.github/workflows/.yml` file add the following (between the `name` and `jobs` keys):
![on push tags](on-push-tags.png?raw=true "on push tags")
Full example:
![publish release](publish-release.png?raw=true "publish release")
2) Create the tag with this command (replace the X with any version): `git tag vX.X.X.X`.
3) Commit all changes to be included in the tag.
4) Upload the created tag with the following command: `git push --tags`.
The action of the .yml file will be executed once the tag is created and uploaded to the repository (steps 2, 3 and 4). |