We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43fe6be commit bc01671Copy full SHA for bc01671
1 file changed
.github/workflows/steam-deploy.yml
@@ -74,13 +74,15 @@ jobs:
74
rm ${name}-depot.tar.bz2
75
cd ..
76
done
77
+ - name: Get short SHA of commit
78
+ run: echo "SHORT_SHA=`echo ${{ github.sha }} | cut -c1-8`" >>$GITHUB_ENV
79
- name: Steam deploy
80
uses: game-ci/steam-deploy@v3
81
with:
82
username: ${{ secrets.STEAM_USERNAME }}
83
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
84
appId: 2346660
- buildDescription: ${{ github.event.inputs && github.event.inputs.version || github.ref_name }}
85
+ buildDescription: ${{ github.event.inputs && github.event.inputs.version || github.ref_name }} (${{ env.SHORT_SHA }})
86
rootPath: .
87
depot1Path: common-depot
88
depot2Path: win64-depot
0 commit comments