File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -91,15 +91,12 @@ jobs:
9191 ${{ steps.yarn-cache-dir-path.outputs.dir }}
9292 '**/node_modules'
9393 key : yarn-${{ hashFiles('yarn.lock') }}
94- - name : Configure yarn to use bash for scripts
95- run : |
96- # Configure yarn to use bash for running package.json scripts
97- yarn config set script-shell "C:\\Program Files\\Git\\bin\\bash.exe"
98- shell : powershell
9994 - name : Build
10095 run : yarn build
96+ shell : powershell
10197 - name : App build
10298 run : yarn nx run hyper-flow:make:app
99+ shell : powershell
103100 env :
104101 APPLE_ID : ${{ secrets.APPLE_ID }}
105102 APPLE_PASSWORD : ${{ secrets.APPLE_PASSWORD }}
@@ -123,8 +120,8 @@ jobs:
123120 - name : Get yarn cache directory path
124121 id : yarn-cache-dir-path
125122 run : |
126- echo "::set-output name= dir:: $(yarn cache dir)"
127- echo "::set-output name= version:: $(yarn -v)"
123+ echo "dir= $(yarn cache dir)" >> $GITHUB_OUTPUT
124+ echo "version= $(yarn -v)" >> $GITHUB_OUTPUT
128125 - name : Restore node_modules
129126 uses : actions/cache/restore@v3
130127 id : cache-node-modules
You can’t perform that action at this time.
0 commit comments