Skip to content

Commit

Permalink
New version check: error on null/empty
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahrotahn committed May 23, 2023
1 parent b403834 commit e1bc4ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/new_version_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- name: Get the latest Chromium version
id: latest-version
run: |
echo "linux_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -rc '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "win_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -rc '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "mac_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/mac/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -rc '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "linux_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "win_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "mac_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/mac/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Create Issue for all platforms
if: |
Expand Down

0 comments on commit e1bc4ab

Please sign in to comment.