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 39
39
**/setup.cfg
40
40
41
41
- run : pip install -U pip setuptools wheel typing
42
- - run : pip install -e .[all]
42
+ - run : pip install -e " .[all]"
43
43
44
44
- run : make RUNNER=cwltool unittest-examples
Original file line number Diff line number Diff line change 12
12
# Ref: https://stackoverflow.com/questions/57989790/using-github-actions-to-publish-documentation
13
13
deploy :
14
14
runs-on : ubuntu-latest
15
+ permissions :
16
+ contents : write
15
17
steps :
16
18
- uses : actions/checkout@v3
17
19
30
32
python3 -m pip install --upgrade pip
31
33
- name : Get pip cache dir
32
34
id : pip-cache
33
- run : echo "::set-output name= dir:: $(pip cache dir)"
35
+ run : echo "dir= $(pip cache dir)" >> "$GITHUB_OUTPUT "
34
36
35
37
- name : Cache dependencies
36
38
uses : actions/cache@v3
40
42
restore-keys : |
41
43
${{ runner.os }}-pip-
42
44
- name : Install dependencies
43
- run : python3 -m pip install -U -e .[all]
45
+ run : python3 -m pip install -U -e " .[all]"
44
46
45
47
- name : pre-pull container images
46
48
run : make container-pull
You can’t perform that action at this time.
0 commit comments