From d5b6cb36a0cdadc1c8d635d36b5f76c410d96e66 Mon Sep 17 00:00:00 2001 From: Andrea Como Date: Sat, 20 Feb 2021 23:38:23 +0100 Subject: [PATCH 1/4] Fixing description --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index e104673..b87059b 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: 'Maven GAV Extractor' -description: 'Extract Maven grouoId, artifactId and version from pom.xml' +description: 'Extracts Maven grouoId, artifactId and version from pom.xml' branding: icon: 'bar-chart-2' color: 'orange' @@ -27,4 +27,4 @@ runs: echo "::set-output name=group-id::$(mvn -f ${{ inputs.pom-location }} org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.groupId -q -DforceStdout)" echo "::set-output name=artifact-id::$(mvn -f ${{ inputs.pom-location }} org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.artifactId -q -DforceStdout)" echo "::set-output name=version::$(mvn -f ${{ inputs.pom-location }} org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -DforceStdout)" - shell: bash \ No newline at end of file + shell: bash From 3525f0fe889902f929cebd267ddc90f53bf0f7c4 Mon Sep 17 00:00:00 2001 From: Andrea Como Date: Sat, 20 Feb 2021 23:39:07 +0100 Subject: [PATCH 2/4] Fixing another typo --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b87059b..98070e0 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: 'Maven GAV Extractor' -description: 'Extracts Maven grouoId, artifactId and version from pom.xml' +description: 'Extracts Maven groupId, artifactId and version from pom.xml' branding: icon: 'bar-chart-2' color: 'orange' From 109eb1c1df2c00ed3af02ebde8b905f93f41e612 Mon Sep 17 00:00:00 2001 From: Andrea Como Date: Sat, 20 Feb 2021 23:42:39 +0100 Subject: [PATCH 3/4] Fixed action name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 999ad1e..8539f15 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,11 @@ jobs: java-version: 11 - name: Extract GAV id: extract - uses: andreacomo/maven-gav-extractor-github-action@v1 + uses: actions/maven-gav-extractor@v1 - name: Log GAV run: | echo ${{ steps.extract.outputs.group-id }} echo ${{ steps.extract.outputs.artifact-id }} echo ${{ steps.extract.outputs.version }} shell: bash -``` \ No newline at end of file +``` From 82de62dbe8b0b92c76525a40990c1277764754cf Mon Sep 17 00:00:00 2001 From: Andrea Como Date: Sat, 20 Feb 2021 23:52:10 +0100 Subject: [PATCH 4/4] readme fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8539f15..d2a80cf 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ jobs: java-version: 11 - name: Extract GAV id: extract - uses: actions/maven-gav-extractor@v1 + uses: andreacomo/maven-gav-extractor@v1 - name: Log GAV run: | echo ${{ steps.extract.outputs.group-id }}