forked from iterate-ch/cyberduck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow cyberduck-release-windows-chocolatey
- Loading branch information
1 parent
9f7cd51
commit 52633d0
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
.github/workflows/cyberduck-release-windows-chocolatey.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: cyberduck-release-windows-chocolatey | ||
on: | ||
workflow_dispatch: | ||
env: | ||
# # TimestamperBuildWrapper was not converted because the behavior is available by default in GitHub Actions and/or it is not configurable | ||
jobs: | ||
build: | ||
runs-on: | ||
- self-hosted | ||
- windows | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4.1.0 | ||
- name: run batch command | ||
shell: cmd | ||
run: FOR %%c in ("%WORKSPACE%\..\cyberduck-release-windows\windows\target\release\cyberduck.*.nupkg") DO C:\ProgramData\chocolatey\bin\cpush --verbose --api-key 195755fd-123d-4325-a497-036ee455c54e %%c | ||
# # Mailer plugin was not converted because GitHub Actions will email the actor after failed build and does not support emailing a list of recipients |