Skip to content

Commit

Permalink
Fixing the release (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Maillard authored Mar 26, 2020
1 parent 14496de commit 8191f4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Version
run: mvn versions:set -DnewVersion=${GITHUB_REF/refs\/tags\/v/} -DgenerateBackupPoms=false
run: |
mvn versions:set -DnewVersion=${GITHUB_REF/refs\/tags\/v/} -DgenerateBackupPoms=false
cd qudini-reactive-example
mvn versions:set -DnewVersion=${GITHUB_REF/refs\/tags\/v/} -DgenerateBackupPoms=false
cd ..
- name: Release
run: |
echo "<settings><servers><server><id>github</id><username>qudini</username><password>${GITHUB_TOKEN}</password></server></servers></settings>" > ~/.m2/settings.xml
Expand Down
4 changes: 4 additions & 0 deletions qudini-reactive-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 8191f4a

Please sign in to comment.