Skip to content

Commit

Permalink
analyze workflow: scheduled fromJSON error
Browse files Browse the repository at this point in the history
Error: The template is not valid.
.github/workflows/analyze.yaml (Line: 38, Col: 12):
Error reading JToken from JsonReader.
Path '', line 0, position 0.
  • Loading branch information
dhimmel committed Jan 25, 2025
1 parent 892a4d7 commit 841a818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Process inputs
id: inputs
run: |
echo "refresh_cache=${{ fromJSON(inputs.refresh_cache) || github.event_name == 'schedule' }}" >> "$GITHUB_OUTPUT"
echo "refresh_cache=${{ github.event_name == 'schedule' || fromJSON(inputs.refresh_cache) }}" >> "$GITHUB_OUTPUT"
echo "solar_segment_count=${{ inputs.solar_segment_count || 300000 }}" >> "$GITHUB_OUTPUT"
# GitHub will remove any cache entries that have not been accessed in over 7 days
- name: Restore OpenSkiMap Cache
Expand Down

0 comments on commit 841a818

Please sign in to comment.