Skip to content

Commit 436fc80

Browse files
committed
Stop using deprecated set-output syntax
1 parent 6594a50 commit 436fc80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919

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

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

2828
- name: Create NuGet config path
2929
run: mkdir -p ~/.config/NuGet/

0 commit comments

Comments
 (0)