Skip to content

Commit

Permalink
Create zulu-8-choco-push.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshastri authored Nov 11, 2023
1 parent 8620e31 commit 0cb0746
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/zulu-8-choco-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This file pushes the choco package for zulu-8

name: Zulu-8 choco push workflow

on:
push:
paths:
- 'zulu-8/zulu-8.nuspec'

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: ultimate
shell: powershell
run: |
cd zulu-8
choco pack
choco push --source https://push.chocolatey.org/ -k $env:CHOCO_KEY
env:
CHOCO_KEY: ${{ secrets.CHOCO_KEY }}

0 comments on commit 0cb0746

Please sign in to comment.