removed linter and test #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
ITCH_USERNAME: Mookie4242 | |
ITCH_GAME_ID: cellular-automata | |
jobs: | |
deploy: | |
name: Upload to Itch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Extract version from package.json | |
uses: sergeysova/jq-action@v2 | |
id: version | |
with: | |
cmd: "jq .version package.json -r" | |
- uses: KikimoraGames/[email protected] | |
with: | |
butlerApiKey: ${{secrets.BUTLER_API_KEY}} | |
gameData: ./dist | |
itchUsername: ${{env.ITCH_USERNAME}} | |
itchGameId: ${{ env.ITCH_GAME_ID }} | |
buildChannel: itch_build | |
buildNumber: ${{ steps.version.outputs.value }} |