File tree Expand file tree Collapse file tree
.github/actions/setup-env Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 cache-name : cache-node-gyp
3838 with :
3939 path : ~/.cache/node-gyp
40- key : ' ${{ inputs.os }}-${{ runner.arch }}-${{ inputs.node}}'
40+ key : ' node-gyp- ${{ inputs.os }}-${{ runner.arch }}-${{ inputs.node}}'
4141
4242 - name : Cache node modules
4343 id : cache-nodemodules
4646 cache-name : cache-node-modules
4747 with :
4848 path : node_modules
49- key : ${{ inputs.os }}-${{ inputs.node }}-${{ hashFiles('package-lock.json') }}
49+ key : " node-modules- ${{ inputs.os }}-${{ inputs.node }}-${{ hashFiles('package-lock.json') }}"
5050
5151 - name : Setup dotnet
5252 uses : actions/setup-dotnet@v5
@@ -57,15 +57,15 @@ runs:
5757 uses : actions/cache@v4
5858 with :
5959 path : ~/.nuget/packages
60- key : ${{ inputs.os }}-nuget -${{ hashFiles('**/*.csproj') }}
60+ key : nuget- ${{ inputs.os }}-${{ hashFiles('**/*.csproj') }}
6161 restore-keys : |
6262 ${{ inputs.os }}-nuget-
6363
6464 - if : runner.os == 'macOS' && inputs.node == 16
6565 shell : bash
6666 name : Add missing packages for macOS NodeJs 16
6767 run : |
68- brew install python-setuptools --overwrite
68+ # brew install python-setuptools --overwrite
6969 pip install --upgrade --force-reinstall setuptools
7070
7171 - name : Setup Mono
7575 brew install mono --overwrite
7676 brew reinstall pkg-config
7777 brew bundle dump --file ./Brewfile --force
78+ echo "$(cat ./Brewfile)"
7879
7980 - name : Homebrew cache
8081 if : runner.os == 'macOS'
8384 path : |
8485 ~/Library/Caches/Homebrew
8586 ~/opt/homebrew/Cellar
86- key : ${{ inputs.os }}-brew -${{ hashFiles('./Brewfile') }}
87+ key : brew- ${{ inputs.os }}-${{ hashFiles('./Brewfile') }}
8788
8889 - name : Setup Mono
8990 if : runner.os == 'Linux'
You can’t perform that action at this time.
0 commit comments