This repository was archived by the owner on Jul 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,12 @@ jobs:
1919 echo "::set-output name=productName::$(node -p -e "require('./package.json').productName")"
2020 echo "::set-output name=version::$(node -p -e "require('./package.json').version")"
2121 - name : Install Dependencies
22- run : |
23- yarn install
24- yarn run dist
25- - name : Building
22+ run : yarn
23+ - name : Compile TypeScript
24+ run : yarn run init
25+ - name : Install Distributable Modules
26+ run : yarn run dist
27+ - name : Build Packages
2628 run : yarn run build
2729 env :
2830 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -61,10 +63,12 @@ jobs:
6163 echo "::set-output name=productName::$(node -p -e "require('./package.json').productName")"
6264 echo "::set-output name=version::$(node -p -e "require('./package.json').version")"
6365 - name : Install Dependencies
64- run : |
65- yarn install
66- yarn run dist
67- - name : Building
66+ run : yarn
67+ - name : Compile TypeScript
68+ run : yarn run init
69+ - name : Install Distributable Modules
70+ run : yarn run dist
71+ - name : Build Packages
6872 run : yarn run build
6973 env :
7074 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments