Skip to content

Commit

Permalink
ci: allow prepare tasks to run even if previous failed, so re-runs on…
Browse files Browse the repository at this point in the history
… github can work
  • Loading branch information
Im-Beast committed Jun 21, 2022
1 parent 874c82e commit ea22f4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
TAG_VERSION: ${{steps.get_tag_version.outputs.TAG_VERSION}}
run: >
deno task prepare-crayon $TAG_VERSION && cd node_crayon && npm publish &&
deno task prepare-chalk-aliases $TAG_VERSION && cd ../node_chalk_aliases && npm publish &&
deno task prepare-css-keywords $TAG_VERSION && cd ../node_css_keywords && npm publish &&
deno task prepare-literal $TAG_VERSION && cd ../node_literal && npm publish
((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)

0 comments on commit ea22f4e

Please sign in to comment.