Skip to content

Commit

Permalink
Merge pull request #343 from philvarner/pv/fix-dev-main-schema-publish
Browse files Browse the repository at this point in the history
fix publishing schemas by renaming default from dev to main
  • Loading branch information
philvarner committed Oct 13, 2022
2 parents 23b676d + 955ee3d commit 9687f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/publish.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const ghpages = require('gh-pages');

let args = process.argv.slice(2);
let tag = 'dev';
let tag = 'main';
if (args.length && args[0].trim().length > 0) {
tag = args[0];
}
Expand Down

0 comments on commit 9687f18

Please sign in to comment.