File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -133,12 +133,12 @@ jobs:
133133 - name : Publish to GitHub Packages
134134 run : |
135135 # Deploy main JAR
136- mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=1.0.0 -Dpackaging=jar -Dfile=target/jpwise-1.0.0 .jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
136+ mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=${{ steps.extract_version.outputs.VERSION }} -Dpackaging=jar -Dfile=target/jpwise-${{ steps.extract_version.outputs.VERSION }} .jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
137137 # Deploy POM
138- mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=1.0.0 -Dpackaging=pom -Dfile=pom.xml -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
138+ mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=${{ steps.extract_version.outputs.VERSION }} -Dpackaging=pom -Dfile=pom.xml -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
139139 # Deploy sources JAR
140- mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=1.0.0 -Dpackaging=jar -Dclassifier=sources -Dfile=target/jpwise-1.0.0 -sources.jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
140+ mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=${{ steps.extract_version.outputs.VERSION }} -Dpackaging=jar -Dclassifier=sources -Dfile=target/jpwise-${{ steps.extract_version.outputs.VERSION }} -sources.jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
141141 # Deploy javadoc JAR
142- mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=1.0.0 -Dpackaging=jar -Dclassifier=javadoc -Dfile=target/jpwise-1.0.0 -javadoc.jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
142+ mvn deploy:deploy-file -DgroupId=io.github.mikeddavydov -DartifactId=jpwise -Dversion=${{ steps.extract_version.outputs.VERSION }} -Dpackaging=jar -Dclassifier=javadoc -Dfile=target/jpwise-${{ steps.extract_version.outputs.VERSION }} -javadoc.jar -DrepositoryId=github -Durl=https://maven.pkg.github.com/mikeddavydov/jpwise
143143 env :
144144 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments