We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f0426c commit 25af97dCopy full SHA for 25af97d
.github/workflows/release.yml
@@ -48,9 +48,7 @@ jobs:
48
EOF
49
- name: Update Configuration
50
run: |
51
- find . -type f -name "pom.xml" -exec sed -i -e 's|${revision}|${{ github.event.inputs.version }}|g' \
52
- -e 's|^\( <version>\).*\(</version>\)$|\1${{ github.event.inputs.version }}\2|' \
53
- -e 's|${parent.groupId}|com.clickhouse|g' -e 's|${project.parent.groupId}|com.clickhouse|g' '{}' \;
+ sed -i 's|<revision>.*</revision>|<revision>${{ github.event.inputs.version }}</revision>|g' pom.xml
54
find . -type f -name "simplelogger.*" -exec rm -fv '{}' \;
55
- name: Release Maven package
56
uses: samuelmeuli/action-maven-publish@v1
0 commit comments