Skip to content

Commit

Permalink
chore: update workflows config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jul 10, 2022
1 parent 85459cf commit 83ad803
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
- run: npm publish
working-directory: core
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -216,7 +216,7 @@ jobs:
- run: npm publish
working-directory: themes/theme
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -229,7 +229,7 @@ jobs:
- run: npm publish
working-directory: themes/abcdef
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -243,7 +243,7 @@ jobs:
- run: npm publish
working-directory: themes/androidstudio
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -257,7 +257,7 @@ jobs:
- run: npm publish
working-directory: themes/okaidia
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -270,7 +270,7 @@ jobs:
- run: npm publish
working-directory: themes/dracula
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -284,7 +284,7 @@ jobs:
- run: npm publish
working-directory: themes/duotone
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -297,7 +297,7 @@ jobs:
- run: npm publish
working-directory: themes/eclipse
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -310,7 +310,7 @@ jobs:
- run: npm publish
working-directory: themes/github
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -323,7 +323,7 @@ jobs:
- run: npm publish
working-directory: themes/darcula
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -336,7 +336,7 @@ jobs:
- run: npm publish
working-directory: themes/bespin
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -349,7 +349,7 @@ jobs:
- run: npm publish
working-directory: themes/sublime
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -362,7 +362,7 @@ jobs:
- run: npm publish
working-directory: themes/xcode
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -375,7 +375,7 @@ jobs:
- run: npm publish
working-directory: extensions/events
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand All @@ -388,6 +388,6 @@ jobs:
- run: npm publish
working-directory: extensions/color
if: ${{ always() }}
if: success() || failure()
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 83ad803

Please sign in to comment.