Skip to content

Commit

Permalink
bugfix if syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisoft committed Jul 27, 2024
1 parent fba3d75 commit 8874a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Cache pip dependencies
if: !startsWith('graal', env.PYTHON_VERSION) && ${{ github.actor == github.repository_owner }}
if: !startsWith('graal', env.PYTHON_VERSION) && github.actor == github.repository_owner
uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Cache pip dependencies
if: !startsWith('graal', env.PYTHON_VERSION) && ${{ github.actor == github.repository_owner }}
if: !startsWith('graal', env.PYTHON_VERSION) && github.actor == github.repository_owner
uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand Down

0 comments on commit 8874a56

Please sign in to comment.