Deploy Windows #4
Workflow file for this run
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 Windows | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy-windows: | |
name: Deploy (Windows) | |
runs-on: windows-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CHOCOLATEY_TOKEN: ${{ secrets.CHOCOLATEY_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare environment | |
uses: ./.github/actions/prepare | |
- name: Build version and env | |
run: dart run grinder build-version --deploy-type=chocolatey | |
- name: Deploy Github Windows | |
run: dart run grinder pkg-github-windows | |
- name: Deploy Chocolatey (Windows) | |
run: dart run grinder pkg-chocolatey-deploy |