Merge pull request #56 from ravager-dk:Zoom6.1.10 #13
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: Zoom VDI plugin publish | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- 'Zoom-VDI-Universal-Plugin/**' | |
jobs: | |
Publish-zoom-Package: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: 📦 Pack Chocolatey Package | |
run: choco pack Zoom-VDI-Universal-Plugin/zoom-vdi-universal-plugin.nuspec | |
- name: 🔐 Set Chocolatey API-KEY | |
run: choco apikey --api-key ${{ secrets.API_KEY }} -source https://push.chocolatey.org/ | |
- name: 🚀 Push Chocolatey Package | |
run: choco push -source https://push.chocolatey.org/ |