Skip to content

Commit

Permalink
fix(build): rename xar
Browse files Browse the repository at this point in the history
  • Loading branch information
duncdrum committed Apr 20, 2024
1 parent 84e6bcf commit ba7bd34
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 18 deletions.
48 changes: 31 additions & 17 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"branches": ["main"],
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
{
Expand All @@ -9,21 +11,33 @@
{
"preset": "conventionalcommits"
},
["@semantic-release/exec", {
"prepareCmd": "ant -Dapp.version=${nextRelease.version}"
}],
["@semantic-release/git", {
"assets": ["package.json", "package-lock.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
["@semantic-release/github", {
"assets": [
{
"path": "build/aws-xq.xar",
"name": "aws-xq.xar",
"label": "Expath package (aws-xq.xar)"
}
]
}]
[
"@semantic-release/exec",
{
"prepareCmd": "ant -Dapp.version=${nextRelease.version}"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "build/aws-xq.xar",
"name": "aws-xq.xar",
"label": "Expath package (aws-xq.xar)"
}
]
}
]
]
}
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<echo message="Creating xar file..."/>
<echo message="------------------------------------------------------------"/>

<zip basedir="${basedir}" destfile="${build.dir}/${app.name}-${app.version}.xar">
<zip basedir="${basedir}" destfile="${build.dir}/${app.name}.xar">
<exclude name="${build.dir}/**"/>
<exclude name="*.tmpl"/>
<exclude name=".github/**"/>
Expand Down

0 comments on commit ba7bd34

Please sign in to comment.