Skip to content

Commit

Permalink
CI: Fix copy/paste issues in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Nov 11, 2021
1 parent af5a2a0 commit 6ee5aab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
set -e -o pipefail
export TEST_DATA_DIR=$GITHUB_WORKSPACE/staticdata
pushd docs
make overridecheck html O=-W 2>&1 | tee build-${{ matrix.python-version }}.log || (
make overridecheck html O=-W 2>&1 | tee build-${{ inputs.key }}.log || (
echo '::set-output name=log_available::true' && false
)
popd
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-conda/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
conda-${{ inputs.type }}-${{ runner.os }}
conda-${{ inputs.type }}-
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ inputs.python-version }}
uses: conda-incubator/[email protected]
with:
miniforge-version: latest
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/install-pypi/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ inputs:
runs:
using: composite
steps:
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ inputs.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ inputs.python-version }}

# Use pip to find the right cache dir and then sets up caching for it
- name: Get pip cache dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
need-cartopy: true
type: 'doc'
python-version: ${{ matrix.dep-versions }}
python-version: ${{ matrix.python-version }}

- name: Build docs
id: build-docs
Expand Down

0 comments on commit 6ee5aab

Please sign in to comment.