Corrected v1.11.0 x86 and x64 file hashes. #24
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: Push to chocolatey.org | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'tiled.nuspec' | |
- 'tools/chocolateyInstall.ps1' | |
workflow_dispatch: | |
jobs: | |
push: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Chocolatey pack | |
run: choco pack | |
- name: Chocolatey push | |
run: choco push --source https://push.chocolatey.org/ --api-key ${{ secrets.CHOCOLATEY_API_KEY }} |