Skip to content

Commit

Permalink
ci: fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Superd22 committed Aug 11, 2022
1 parent 856159e commit cd0b04b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ module.exports = {
"replacements": [
{
"files": [
"public/appinfo.json"
"app/public/appinfo.json"
],
"from": "\"version\": \"[^\"]*\"",
"to": "\"version\": \"${nextRelease.version}\"",
"results": [
{
"file": "public/appinfo.json",
"file": "app/public/appinfo.json",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
Expand All @@ -25,7 +25,7 @@ module.exports = {
},
{
"files": [
"public/appinfo.json"
"app/public/appinfo.json"
],
"from": "\"version\": \"[^\"]*\"",
"to": (matched) => {
Expand All @@ -35,7 +35,7 @@ module.exports = {
},
"results": [
{
"file": "public/appinfo.json",
"file": "app/public/appinfo.json",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
Expand All @@ -50,7 +50,7 @@ module.exports = {
"@semantic-release/git",
{
"assets": [
"public/appinfo.json",
"app/public/appinfo.json",
"package.json",
"package-lock.json",
"CHANGELOG.md"
Expand All @@ -69,7 +69,7 @@ module.exports = {
{
"assets": [
{
"path": "dist/appinfo.json",
"path": "dist/app/appinfo.json",
"label": "WebOS App Manifest"
},
{
Expand Down

0 comments on commit cd0b04b

Please sign in to comment.