Skip to content

Commit

Permalink
chore: Migrate away from set-env in update-api-list
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma committed Mar 12, 2024
1 parent e768461 commit 63218ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-api-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
run: |
mix google_apis.discover_update apis.json
if [ -n "$(git diff)" ]; then
echo "::set-env name=FOUND_CHANGES::true"
echo "FOUND_CHANGES=true" >> "$GITHUB_ENV"
echo "Changes were made to apis.json"
else
echo "::set-env name=FOUND_CHANGES::false"
echo "FOUND_CHANGES=false" >> "$GITHUB_ENV"
echo "No changes were made to apis.json"
fi
- name: Push changes to branch
Expand Down

0 comments on commit 63218ac

Please sign in to comment.