Attempt to use TOTP instead
This commit is contained in:
parent
dc44c65fb1
commit
f09c935626
|
@ -29,7 +29,7 @@ on:
|
||||||
STEAM_USERNAME:
|
STEAM_USERNAME:
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
STEAM_CONFIG_VDF:
|
STEAM_SHARED_SECRET:
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
|
@ -80,12 +80,6 @@ jobs:
|
||||||
echo "love="$(ls bin/*.love) >> "$GITHUB_OUTPUT"
|
echo "love="$(ls bin/*.love) >> "$GITHUB_OUTPUT"
|
||||||
echo "win64="$(ls bin/*-win64.zip) >> "$GITHUB_OUTPUT"
|
echo "win64="$(ls bin/*-win64.zip) >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Debugging publish
|
|
||||||
run: |
|
|
||||||
echo "github.event_name" = ${{ github.event_name }}
|
|
||||||
echo "ITCH_GAME_ID" = ${{ inputs.ITCH_GAME_ID }}
|
|
||||||
echo "STEAM_APP_ID" = ${{ inputs.STEAM_APP_ID }}
|
|
||||||
|
|
||||||
# Upload to itch
|
# Upload to itch
|
||||||
|
|
||||||
- uses: KikimoraGames/itch-publish@v0.0.3
|
- uses: KikimoraGames/itch-publish@v0.0.3
|
||||||
|
@ -108,11 +102,17 @@ jobs:
|
||||||
|
|
||||||
# Upload to steam
|
# Upload to steam
|
||||||
|
|
||||||
|
- uses: CyberAndrii/steam-totp@v1
|
||||||
|
name: Generate TOTP
|
||||||
|
id: steam-totp
|
||||||
|
with:
|
||||||
|
shared_secret: ${{ secrets.STEAM_SHARED_SECRET }}
|
||||||
|
|
||||||
- uses: game-ci/steam-deploy@v3
|
- uses: game-ci/steam-deploy@v3
|
||||||
if: always() && github.event_name == 'release' && inputs.STEAM_APP_ID
|
if: always() && github.event_name == 'release' && inputs.STEAM_APP_ID
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.STEAM_USERNAME }}
|
username: ${{ secrets.STEAM_USERNAME }}
|
||||||
configVdf: ${{ secrets.STEAM_CONFIG_VDF }}
|
totp: ${{ steps.steam-totp.outputs.code }}
|
||||||
appId: ${{ inputs.STEAM_APP_ID }}
|
appId: ${{ inputs.STEAM_APP_ID }}
|
||||||
buildDescription: ${{ inputs.VERSION }}
|
buildDescription: ${{ inputs.VERSION }}
|
||||||
rootPath: .
|
rootPath: .
|
||||||
|
|
Loading…
Reference in New Issue
Block a user