Skip to content

Commit

Permalink
ci(actions): use variable for check job
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Oct 14, 2023
1 parent f4feead commit b0f3179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Clean Up Environment
if: ${{ env.REMOVE_PACKAGES != '' }}
if: ${{ vars.REMOVE_PACKAGES != '' }}
env:
REMOVE_PACKAGES: ${{ vars.REMOVE_PACKAGES }}
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Clean Up Environment
if: ${{ env.REMOVE_PACKAGES != '' }}
if: ${{ vars.REMOVE_PACKAGES != '' }}
env:
REMOVE_PACKAGES: ${{ vars.REMOVE_PACKAGES }}
run: |
Expand Down

0 comments on commit b0f3179

Please sign in to comment.