Skip to content

Commit

Permalink
ci: do not push after release (#244)
Browse files Browse the repository at this point in the history
we cannot push to the main branch after releasing a version
the only downside to this is we do not have the version in
the package.json

Signed-off-by: Timo Glastra <timo@animo.id>
  • Loading branch information
TimoGlastra authored Apr 15, 2021
1 parent c43fecf commit ec04ddc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@
"release": true
},
"npm": {
"skipChecks": true
"skipChecks": true,
"ignoreVersion": true
},
"git": {
"requireBranch": "main",
"push": false,
"commit": false
}
}
}

0 comments on commit ec04ddc

Please sign in to comment.