Skip to content

Commit

Permalink
use GITHUB_OUTPUT instead of ::set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
gleblebedev committed Jul 27, 2024
1 parent 797fca1 commit 7cf4f30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ jobs:
id: play-keystore-check
run: |
if [ "${{ secrets.PLAY_KEYSTORE }}" != '' ]; then
echo "::set-output name=HAS_PLAY_KEYSTORE::true"
echo "HAS_PLAY_KEYSTORE=true" >> "$GITHUB_OUTPUT"
else
echo "::set-output name=HAS_PLAY_KEYSTORE::false"
echo "HAS_PLAY_KEYSTORE=false" >> "$GITHUB_OUTPUT"
fi
- name: Check for STEAM_USERNAME
id: steam-check
run: |
if [ "${{ secrets.STEAM_USERNAME }}" != '' ]; then
echo "::set-output name=HAS_STEAM_USERNAME::true"
echo "HAS_STEAM_USERNAME=true" >> "$GITHUB_OUTPUT"
else
echo "::set-output name=HAS_STEAM_USERNAME::false"
echo "HAS_STEAM_USERNAME=false" >> "$GITHUB_OUTPUT"
fi
outputs:
Expand Down

0 comments on commit 7cf4f30

Please sign in to comment.