mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-11 19:04:50 +01:00
Use current tag as version on itch.io
This commit is contained in:
parent
9a7895d543
commit
4c9e262a18
1 changed files with 6 additions and 0 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -15,6 +15,9 @@ jobs:
|
|||
container:
|
||||
image: barichello/godot-ci:3.2.3
|
||||
steps:
|
||||
- name: Get tag name
|
||||
id: tag_name
|
||||
run: echo ::set-output name=TAG_NAME::${GITHUB_REF#refs/tags/}
|
||||
- name: Install dependencies
|
||||
run: apt-get update && apt-get install -y rsync p7zip make
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -38,6 +41,7 @@ jobs:
|
|||
ITCH_GAME: ${{ env.PROJECT_NAME }}
|
||||
ITCH_USER: blinry
|
||||
PACKAGE: build/${{ env.PROJECT_NAME }}-linux.zip
|
||||
VERSION: ${{ steps.tag_name.outputs.TAG_NAME }}
|
||||
- name: Deploy macOS
|
||||
uses: josephbmanley/butler-publish-itchio-action@v1.0.2
|
||||
env:
|
||||
|
@ -46,6 +50,7 @@ jobs:
|
|||
ITCH_GAME: ${{ env.PROJECT_NAME }}
|
||||
ITCH_USER: blinry
|
||||
PACKAGE: build/${{ env.PROJECT_NAME }}-macos.zip
|
||||
VERSION: ${{ steps.tag_name.outputs.TAG_NAME }}
|
||||
- name: Deploy Windows
|
||||
uses: josephbmanley/butler-publish-itchio-action@v1.0.2
|
||||
env:
|
||||
|
@ -54,3 +59,4 @@ jobs:
|
|||
ITCH_GAME: ${{ env.PROJECT_NAME }}
|
||||
ITCH_USER: blinry
|
||||
PACKAGE: build/${{ env.PROJECT_NAME }}-windows.zip
|
||||
VERSION: ${{ steps.tag_name.outputs.TAG_NAME }}
|
||||
|
|
Loading…
Reference in a new issue