Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon32 committed Aug 18, 2024
1 parent dc317bc commit 7b3d6b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "godot-ci export"
on:
push:
tags:
- 'v*'
- 'v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
inputs:
deployBranch:
Expand Down Expand Up @@ -43,7 +43,9 @@ jobs:
- name: Upload to Itch.io
run: |
butler -V
butler push build/web/ ${PROJECT}:html5 --userversion 1.1.0 ${TAG:1}
VERSION=${TAG#v}
echo Version: $VERSION
butler push build/web/ ${PROJECT}:html5 --userversion ${VERSION}
butler status ${PROJECT}:html5
env:
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
Expand Down

0 comments on commit 7b3d6b2

Please sign in to comment.