Skip to content

Commit

Permalink
chore: push release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed Oct 26, 2024
1 parent fc1a0a3 commit f47293c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": " deno test --coverage --allow-run --allow-env=VERBOSE",
"coverage": " deno coverage",
"readme": " touch README.md && chmod +w README.md && ./readme/generate-readme.ts readme/README.md > README.md && deno fmt README.md; chmod -w README.md",
"release": " deno task all && test -z \"$(git status --porcelain)\" && deno --allow-all npm:@hugojosefson/[email protected]/cli --tag-prefix='' --changelog-all --skip-tag && deno fmt CHANGELOG.md && git add CHANGELOG.md && git commit --amend --no-edit && git tag $(deno --allow-all npm:@hugojosefson/[email protected]/cli --tag-prefix='' --inspect-version) && git push --follow-tags",
"release": " deno task all && test -z \"$(git status --porcelain)\" && deno --allow-all npm:@hugojosefson/[email protected]/cli --tag-prefix='' --changelog-all --skip-tag && deno fmt CHANGELOG.md && git add CHANGELOG.md && git commit --amend --no-edit && git tag $(deno --allow-all npm:@hugojosefson/[email protected]/cli --tag-prefix='' --inspect-version) && git push --follow-tags origin main",
"bump-deps": " deno task forall-files-no-yaml -- deno run --allow-env --allow-read=.,$HOME/.cache/deno,$HOME/.local/share/deno-wasmbuild --allow-write=.,$HOME/.local/share/deno-wasmbuild --allow-run=git --allow-net jsr:@molt/[email protected] --commit --prefix=\"chore: \"",
"on-file-save": " sh -c 'err=$(NO_COLOR=1 deno fmt \"$1\" 2>&1); if [ $? -eq 0 ] || [ \"$err\" != \"error: No target files found.\" ]; then echo \"$err\"; fi; if [ \"$(echo \"$1\" | cut -c 1-7)\" = \"readme/\" ]; then deno task readme; fi' -s",
"list-files": " git ls-files | deno eval 'import{toText}from\"jsr:@std/[email protected]\";console.log((await toText(Deno.stdin.readable)).split(\"\\n\").filter(f=>f.startsWith(\".github/workflows\")||/\\.((mj|j|t)sx?|jsonc?)$/.test(f)).filter(f=>{try{return !Deno.statSync(f).isDirectory}catch{}}).join(\"\\n\"))'",
Expand Down

0 comments on commit f47293c

Please sign in to comment.