Skip to content

Commit

Permalink
ci: fix paths
Browse files Browse the repository at this point in the history
why i can't just re-run old job with new workflow ;-;
  • Loading branch information
Im-Beast committed Jun 21, 2022
1 parent ea22f4e commit 4b7ec92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
TAG_VERSION: ${{steps.get_tag_version.outputs.TAG_VERSION}}
run: >
((deno task prepare-crayon $TAG_VERSION && cd node_crayon && npm publish) || true) &&
((deno task prepare-chalk-aliases $TAG_VERSION && cd ../node_chalk_aliases && npm publish) || true) &&
((deno task prepare-css-keywords $TAG_VERSION && cd ../node_css_keywords && npm publish) || true) &&
((deno task prepare-literal $TAG_VERSION && cd ../node_literal && npm publish) || true)
((deno task prepare-chalk-aliases $TAG_VERSION && cd node_chalk_aliases && npm publish) || true) &&
((deno task prepare-css-keywords $TAG_VERSION && cd node_css_keywords && npm publish) || true) &&
((deno task prepare-literal $TAG_VERSION && cd node_literal && npm publish) || true)

0 comments on commit 4b7ec92

Please sign in to comment.