File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3939 **/setup.cfg
4040
4141 - run : pip install -U pip setuptools wheel typing
42- - run : pip install -e .[all]
42+ - run : pip install -e " .[all]"
4343
4444 - run : make RUNNER=cwltool unittest-examples
Original file line number Diff line number Diff line change 1212 # Ref: https://stackoverflow.com/questions/57989790/using-github-actions-to-publish-documentation
1313 deploy :
1414 runs-on : ubuntu-latest
15+ permissions :
16+ contents : write
1517 steps :
1618 - uses : actions/checkout@v3
1719
3032 python3 -m pip install --upgrade pip
3133 - name : Get pip cache dir
3234 id : pip-cache
33- run : echo "::set-output name= dir:: $(pip cache dir)"
35+ run : echo "dir= $(pip cache dir)" >> "$GITHUB_OUTPUT "
3436
3537 - name : Cache dependencies
3638 uses : actions/cache@v3
4042 restore-keys : |
4143 ${{ runner.os }}-pip-
4244 - name : Install dependencies
43- run : python3 -m pip install -U -e .[all]
45+ run : python3 -m pip install -U -e " .[all]"
4446
4547 - name : pre-pull container images
4648 run : make container-pull
You can’t perform that action at this time.
0 commit comments