Skip to content

Commit

Permalink
CI: fix syntax error that caused CI to never ever run
Browse files Browse the repository at this point in the history
Fixes regression from commit 0091085.
  • Loading branch information
eli-schwartz authored and felixonmars committed Feb 2, 2024
1 parent aaabbea commit 2718481
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/pifpaf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- pep8
- build
steps:
- uses: actions/checkout@v4
- run: sudo chown -R 1000:1000 $GITHUB_WORKSPACE
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
ci_image:
- 'Dockerfile'
- uses: actions/checkout@v4
- run: sudo chown -R 1000:1000 $GITHUB_WORKSPACE
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
ci_image:
- 'Dockerfile'
- uses: docker/login-action@v2
with:
registry: ghcr.io
Expand All @@ -46,5 +46,5 @@ jobs:
ETCD_VERSION=${{ env.ETCD_VERSION }}
tags: ghcr.io/pifpaf/ci:latest
if: steps.changes.outputs.ci_image == 'true'
- name: Run tox
run: docker run --rm -v ${{ github.workspace }}:/home/pifpaf/pifpaf ghcr.io/pifpaf/ci:latest tox -e ${{ matrix.env }}
- name: Run tox
run: docker run --rm -v ${{ github.workspace }}:/home/pifpaf/pifpaf ghcr.io/pifpaf/ci:latest tox -e ${{ matrix.env }}

0 comments on commit 2718481

Please sign in to comment.