Skip to content

Commit

Permalink
Stop using deprecated set-output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Jan 7, 2025
1 parent 6594a50 commit 436fc80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:

- name: Get Valheim version id
id: valheimversion
run: echo "::set-output name=valheimversion::$(curl -s https://api.steamcmd.net/v1/info/896660 | jq -r '.data.\"896660\".depots.branches.public.buildid')"
run: echo "valheimversion=$(curl -s https://api.steamcmd.net/v1/info/896660 | jq -r '.data.\"896660\".depots.branches.public.buildid')" >> $GITHUB_OUTPUT

- name: Get BepInEx version
id: bepinexversion
run: echo "::set-output name=bepinexversion::$(./scripts/get-dep-version.sh denikson-BepInExPack_Valheim)"
run: echo "bepinexversion=$(./scripts/get-dep-version.sh denikson-BepInExPack_Valheim)" >> $GITHUB_OUTPUT

- name: Create NuGet config path
run: mkdir -p ~/.config/NuGet/
Expand Down

0 comments on commit 436fc80

Please sign in to comment.