Skip to content

Commit

Permalink
fixed build path 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesuaheli committed May 4, 2024
1 parent 0e94462 commit fcf6098
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ jobs:
strategy:
matrix:
os: [windows, linux]
outputs:
sha_short: ${{ steps.vars.outputs.sha_short }}
build: ${{ steps.build.outputs.build }}
steps:
- uses: actions/checkout@v4
- name: Set output
id: vars
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Godot Build
id: build
# workaround for https://github.com/yeslayla/build-godot-action/issues/30
Expand All @@ -32,16 +39,13 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Set output
id: vars
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Deploy to Steamworks
uses: game-ci/steam-deploy@v3
with:
username: ${{ secrets.STEAM_USERNAME }}
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
appId: 2978800
buildDescription: github-${{ steps.vars.outputs.sha_short }} ${{ github.event.head_commit.message }}
buildDescription: github-${{ needs.build.outputs.sha_short }} ${{ github.event.head_commit.message }}
rootPath: ${{ needs.build.outputs.build }}
depot1Path: Quiz4Everyone_windows
releaseBranch: alpha

0 comments on commit fcf6098

Please sign in to comment.