Skip to content

Commit

Permalink
modificada accion para usar numero de version sin 'v'
Browse files Browse the repository at this point in the history
  • Loading branch information
rg2011 committed Jan 20, 2020
1 parent 9b0dbed commit 01f4653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name: Maven Build
on:
push:
tags:
- 'v*'
- '[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
# Get tag name. strip the initial "v"
- name: Get Version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}

# Upload compiled jar to the release
- name: Upload Asset
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Este proyecto utiliza [Github Actions](https://github.com/features/actions) para
- Crear un tag git con el número de versión

```bash
git tag -a vA.B.C -m "Versión A.B.C"
git tag -a A.B.C -m "Versión A.B.C"
git push --tags
```

Nótese que el número de versión **lleva un prefijo "v" en el tag git, pero no en el pom.xml**. Esto es por prácticas comunes tanto en Maven como en Git.
El número de versión y el nombre del tag deben coincidir, para que la accion automática se complete con éxito.

0 comments on commit 01f4653

Please sign in to comment.