Skip to content

Commit

Permalink
GitHub Actions: Fixed syntax around setting itch channel
Browse files Browse the repository at this point in the history
Setting of variables appears to require no spaces around =.
  • Loading branch information
bjorn committed Nov 25, 2020
1 parent 6d824ec commit 6b97844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Expand Up @@ -287,8 +287,8 @@ jobs:
BUTLER_API_KEY: ${{ secrets.BUTLER_CREDENTIALS }}
TILED_VERSION: ${{ needs.version.outputs.version }}
run: |
ITCH_CHANNEL = ${{ matrix.channel }}
if [[ "$TILED_SNAPSHOT" == 'true' ]]; then ITCH_CHANNEL = "${ITCH_CHANNEL}-snapshot" ; fi
ITCH_CHANNEL=${{ matrix.channel }}
if [[ "$TILED_SNAPSHOT" == 'true' ]]; then ITCH_CHANNEL="${ITCH_CHANNEL}-snapshot" ; fi
./butler push --userversion=${TILED_VERSION} upload thorbjorn/tiled:${ITCH_CHANNEL}
github:
Expand Down

0 comments on commit 6b97844

Please sign in to comment.