We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af38535 + 7c6f8f9 commit ab3d785Copy full SHA for ab3d785
2 files changed
Makefile.js
@@ -79,7 +79,8 @@ target.releaseNext = () => {
79
80
target.releaseLatest = async () => {
81
const currentBranch = exec('git rev-parse --abbrev-ref HEAD').stdout.trim();
82
- if (currentBranch !== 'master') {
+ console.log(`Current branch: ${currentBranch}`);
83
+ if (!process.env.GITHUB_ACTIONS && currentBranch !== 'master') {
84
console.error('Must be on `master` branch to cut an @latest release.');
85
return;
86
}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@cryptact/fontkit",
3
- "version": "1.2.1",
+ "version": "1.2.2",
4
"description": "An advanced font engine for Node and the browser",
5
"main": "dist/fontkit.umd.js",
6
"unpkg": "dist/fontkit.umd.min.js",
0 commit comments