Skip to content

Commit

Permalink
Replace deprecated set-output (game-ci#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
phelioz authored Dec 3, 2022
1 parent 427b427 commit 1b69c0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
if: env.STEAM_USERNAME != ''
run: echo "::set-output name=usernameExists::true"
run: echo "usernameExists=true" >> $GITHUB_OUTPUT

testDeploy:
name: Deploy to Steam ☁
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ runs:
run: |
chmod +x $GITHUB_ACTION_PATH/steam_deploy.sh
$GITHUB_ACTION_PATH/steam_deploy.sh
echo "::set-output name=manifest::$(pwd)/manifest.vdf"
echo "manifest=$(pwd)/manifest.vdf" >> $GITHUB_OUTPUT
shell: bash

0 comments on commit 1b69c0f

Please sign in to comment.