Skip to content

Commit 3e4f382

Browse files
committed
gh-actions: permission fix?
1 parent f04dfe3 commit 3e4f382

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
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

.github/workflows/gh-pages.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
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

@@ -30,7 +32,7 @@ jobs:
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
@@ -40,7 +42,7 @@ jobs:
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

0 commit comments

Comments
 (0)