Skip to content

Commit a5d025c

Browse files
authored
Merge pull request #557 from adobe/newPublishWorkflow
fix: script syntax
2 parents ab8d52a + 5595c3e commit a5d025c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/publish-library.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,16 @@ jobs:
3939
- name: Build
4040
run: yarn build
4141

42-
- name: Configure Yarn Registry
43-
run: yarn config set registry https://registry.npmjs.org/
44-
4542
- name: Publish Adobe Package
4643
run: yarn workspace @adobe/react-spectrum-charts publish-package
4744
env:
4845
NODE_AUTH_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
4946

5047
- name: Publish Spectrum Charts Packages
51-
run: yarn workspace @spectrum-charts/constants publish-package && \
52-
yarn workspace @spectrum-charts/themes publish-package && \
53-
yarn workspace @spectrum-charts/utils publish-package && \
48+
run: |
49+
yarn workspace @spectrum-charts/constants publish-package
50+
yarn workspace @spectrum-charts/themes publish-package
51+
yarn workspace @spectrum-charts/utils publish-package
5452
yarn workspace @spectrum-charts/vega-spec-builder publish-package
5553
env:
5654
NODE_AUTH_TOKEN: ${{ secrets.SPECTRUM_CHARTS_NPM_TOKEN }}

0 commit comments

Comments
 (0)