Skip to content

Commit

Permalink
Se soluciona problema con la subida automatica de libreria a maven ce…
Browse files Browse the repository at this point in the history
…ntral
  • Loading branch information
Jose Carlos Serrano Catena committed Jul 11, 2024
1 parent 4c379d6 commit 2e00695
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/DesplegarMavenCentral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ on:
push:
tags:
- "*.*.*.*"
# Las tareas que hace son las siguientes:
# - Configura Maven y Java
# - El codigo del tag creado se copia como version de la libreria en el pom.xml
# - Se crea una release en el proyecto GITHUB
# - Se publica el JAR en Maven Central
jobs:
publish:
runs-on: ubuntu-latest
Expand All @@ -45,8 +40,11 @@ jobs:
# diferente al codigo de la version en el fichero pom.xml
- name: Aplicamos la misma version en el fichero pom.xml con la que se ha creado el tag
run: mvn versions:set -DnewVersion=${{ github.event.release.tag_name }}
# Se crea release en GITHUB
# Se crea release en GITHUB. Primero se obtiene la version y luego se crea la release con la version obtenida
# IMPORTANTE: SOLO FUNCIONA SI SE CREA UN TAG. Si se ejecuta el action a demanda, eliminar esta tarea
- name: Obtenemos la version de la release a partir del nombre del TAG
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Creamos release
uses: softprops/action-gh-release@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<tokenAuth>false</tokenAuth>
</configuration>
</plugin>

Expand Down Expand Up @@ -297,7 +297,7 @@
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<!-- <autoPublish>true</autoPublish> -->
<autoPublish>true</autoPublish>
</configuration>
</plugin>

Expand Down

0 comments on commit 2e00695

Please sign in to comment.