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
- Host: GitHub
- URL: https://github.com/davidcopano/github-actions-docs
- Owner: davidcopano
- Created: 2021-04-25T11:47:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-26T16:42:10.000Z (over 4 years ago)
- Last Synced: 2025-01-06T04:42:04.035Z (12 months ago)
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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):

Full example:

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). |