try upload game to itch
This commit is contained in:
parent
e746642439
commit
36b65c8510
1 changed files with 15 additions and 1 deletions
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
@ -59,9 +59,23 @@ jobs:
|
||||||
with:
|
with:
|
||||||
targetPlatform: StandaloneWindows64
|
targetPlatform: StandaloneWindows64
|
||||||
allowDirtyBuild: true
|
allowDirtyBuild: true
|
||||||
|
buildName: Roses
|
||||||
|
|
||||||
# Output
|
# Output
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Build
|
name: Build
|
||||||
path: build
|
path: build
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
name: Deploy my project
|
||||||
|
needs: [build, test]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: manleydev/butler-publish-itchio-action@master
|
||||||
|
env:
|
||||||
|
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
|
||||||
|
CHANNEL: ${{ targetPlatform }}
|
||||||
|
ITCH_GAME: roses
|
||||||
|
ITCH_USER: Geri8
|
||||||
|
PACKAGE: build/
|
Loading…
Add table
Add a link
Reference in a new issue