Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Jun 14, 2024
1 parent 64891ab commit 4a44670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
steps:
- id: choose
run: |
if [[ ${{ github.event.schedule }} = "30 2 * * WED" ]]
if [[ "${{ github.event.schedule }}" = "30 2 * * WED" ]]
then
echo "python-version=3.10" >> "$GITHUB_OUTPUT"
elif [[ ${{ github.event.schedule }} = "30 2 * * FRI" ]]
elif [[ "${{ github.event.schedule }}" = "30 2 * * FRI" ]]
then
echo "python-version=3.11" >> "$GITHUB_OUTPUT"
else
Expand Down

0 comments on commit 4a44670

Please sign in to comment.