chore(deps-dev): bump wrangler from 3.88.0 to 3.89.0 (#20) #48
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: release-please | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
steps: | |
- name: Release Please | |
uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
release-type: node | |
deploy: | |
needs: release | |
runs-on: ubuntu-latest | |
if: ${{ needs.release.outputs.release_created }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup butler | |
uses: remarkablegames/setup-butler@v1 | |
- name: Upload to itch.io | |
run: butler push public ${{ github.repository }}:html5 --userversion $(jq -r .version package.json) | |
env: | |
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} |