Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickderobertis/copier-github-actions-semantic-release
Copier Template to Create a Github Action with Semantic Release
https://github.com/nickderobertis/copier-github-actions-semantic-release
copier-template github-actions semantic-release
Last synced: about 3 hours ago
JSON representation
Copier Template to Create a Github Action with Semantic Release
- Host: GitHub
- URL: https://github.com/nickderobertis/copier-github-actions-semantic-release
- Owner: nickderobertis
- License: mit
- Created: 2022-04-19T12:55:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T13:21:08.000Z (about 2 years ago)
- Last Synced: 2024-11-24T23:07:24.264Z (2 months ago)
- Topics: copier-template, github-actions, semantic-release
- Language: Jinja
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Copier Template for a Github Action with Automated Semantic Releases
A template for a Github Action using [semantic-release](https://github.com/semantic-release/semantic-release) for
completely automated versioning and releases. It is set up to follow
[Github's best practices for release management](https://docs.github.com/en/actions/creating-actions/about-custom-actions#using-release-management-for-actions)
including creating specific version tags e.g. `v1.0.2` as well as major version tags e.g. `v1` and the latest tag `latest`. It supports
all Github Action types: `composite`, `docker`, and `javascript`, as well as an additional `typescript` type that is already set up to
transpile into a plain `javascript` action.## Examples
See an example output repository for each of the Github Action types:
- [Composite](https://github.com/nickderobertis/github-actions-semantic-release-composite-example)
- [Docker](https://github.com/nickderobertis/github-actions-semantic-release-docker-example)
- [JavaScript](https://github.com/nickderobertis/github-actions-semantic-release-javascript-example)
- [TypeScript](https://github.com/nickderobertis/github-actions-semantic-release-typescript-example)## Getting Started
It's recommended to use [Flexlate](https://nickderobertis.github.io/flexlate/) so that you can keep the project updated with changes in the template.
```shell
fxt init-from https://github.com/nickderobertis/copier-github-actions-semantic-release
```You can also use Copier for the same purpose:
```shell
copier https://github.com/nickderobertis/copier-github-actions-semantic-release.git my-action-repo-name
```## Developing
This project uses the
[Flexlate Development Tools](https://nickderobertis.github.io/flexlate-dev/).
Get started working on one of the Github action types (`composite`, `docker`, `javascript`, and `typescript`)
with the `serve` command:```shell
dfxt serve -n javascript
```