Skip to content

Commit

Permalink
Fixed use of embedded variable and backticks
Browse files Browse the repository at this point in the history
- derp
  • Loading branch information
daniellockyer committed Jul 19, 2023
1 parent 45fc7b5 commit 2e975ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/ghost-release/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ const ghostVersion = ghostPackageInfo.version;
ref: 'main',
inputs: {
version: 'ref',
version_extra: 'refs/tags/${ghostVersionTagged}',
version_extra: `refs/tags/${ghostVersionTagged}`,
environment: 'both'
}
});
Expand Down
2 changes: 1 addition & 1 deletion actions/ghost-release/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const ghostVersion = ghostPackageInfo.version;
ref: 'main',
inputs: {
version: 'ref',
version_extra: 'refs/tags/${ghostVersionTagged}',
version_extra: `refs/tags/${ghostVersionTagged}`,
environment: 'both'
}
});
Expand Down

0 comments on commit 2e975ec

Please sign in to comment.