mirror of
https://github.com/sleepypikachu/actions-branch-to-docker-tag-name.git
synced 2024-11-23 10:13:50 +08:00
16 lines
394 B
Markdown
16 lines
394 B
Markdown
# actions-branch-to-docker-tag-name
|
|
[GitHub Action](https://github.com/features/actions) to convert a branch name to a valid docker tag name
|
|
|
|
If the branch is your `main` branch then `latest` will be returned.
|
|
|
|
## Example
|
|
```yaml
|
|
- uses: sleepypikachu/actions-branch-to-docker-tag-name@v1.0.0
|
|
id: branch-to-docker-tag
|
|
with:
|
|
branch: "feature/some-branch-name"
|
|
prefix: "feature/"
|
|
```
|
|
|
|
|