Skip to content

Commit

Permalink
Fix: [AEA-0000] - fix getting tags (#203)
Browse files Browse the repository at this point in the history
## Summary

- Routine Change

### Details

- fix getting tag
  • Loading branch information
anthony-nhs authored Sep 3, 2024
1 parent 03c7d15 commit 178160f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
exit 1
fi
tagFormat=$(node -e "const config=require('./release.config.cjs'); console.log(config.tagFormat)")
if [ "${tagFormat}" = "null" ]
if [ "${tagFormat}" = "undefined" ]
then
tagFormat="v\${version}"
fi
Expand Down
1 change: 1 addition & 0 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const {readFileSync} = require("fs")
const commitTemplate = readFileSync("./releaseNotesTemplates/commit.hbs").toString()

module.exports = {
tagFormat: "v${version}",
branches: [
{
name: "main"
Expand Down

0 comments on commit 178160f

Please sign in to comment.