Include itch.io values
This commit is contained in:
parent
3b5ca90cfb
commit
949549caff
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@ -29,14 +29,23 @@ jobs:
|
|||||||
projectDir: client
|
projectDir: client
|
||||||
debugMode: 'true'
|
debugMode: 'true'
|
||||||
package: 'true'
|
package: 'true'
|
||||||
|
- id: get_tag
|
||||||
|
name: Get Tag
|
||||||
|
env:
|
||||||
|
GITHUB_HEAD_REF: $${{ github.head_ref }}
|
||||||
|
GITHUB_BASE_REF: ${{ github.base_ref }}
|
||||||
|
run: |
|
||||||
|
TAG=$(jq --raw-output '.release.tag_name' $GITHUB_EVENT_PATH)
|
||||||
|
echo ::set-output name=TAG::$TAG
|
||||||
- name: Push to Itch
|
- name: Push to Itch
|
||||||
uses: josephbmanley/butler-publish-itchio-action@v1.0.1
|
uses: josephbmanley/butler-publish-itchio-action@v1.0.1
|
||||||
env:
|
env:
|
||||||
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
|
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
|
||||||
CHANNEL: ${{ matrix.platform }}
|
CHANNEL: ${{ matrix.platform }}
|
||||||
ITCH_GAME: example-project
|
ITCH_GAME: defend-together
|
||||||
ITCH_USER: username
|
ITCH_USER: josephbmanley
|
||||||
PACKAGE: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
PACKAGE: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
||||||
|
VERSION: ${{ steps.get_tag.outputs.TAG }}
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
Reference in New Issue
Block a user