Skip to content

Commit

Permalink
chore: publish @wingconsole/ui to npm during the build workflow (#3118
Browse files Browse the repository at this point in the history
)

The `@wingconsole/ui` was being packaged but not published.
  • Loading branch information
skyrpex authored Jun 28, 2023
1 parent 8208fda commit 6976e6f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,15 @@ jobs:
working-directory: wingcompiler
run: npm publish *.tgz --access public

- name: Check published Wing Console UI version
id: wingconsoleui-version
run: echo "version=$(npm view @wingconsole/ui version)" >> $GITHUB_OUTPUT

- name: Publish Wing Console UI
if: ${{ steps.wingconsoleui-version.outputs.version != needs.build.outputs.version }}
working-directory: wingconsoleui
run: npm publish *.tgz --access public

- name: Check published Wing Console Server version
id: wingconsoleserver-version
run: echo "version=$(npm view @wingconsole/server version)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 6976e6f

Please sign in to comment.