Merge pull request #11 from ajshastri/patch-1 #40
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 new package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: ultimate | |
shell: powershell | |
run: | | |
cd ultimate | |
choco pack | |
choco push --source https://push.chocolatey.org/ -k $env:CHOCO_KEY | |
env: | |
CHOCO_KEY: ${{ secrets.CHOCO_KEY }} | |
- name: conmmunity | |
shell: powershell | |
run: | | |
cd conmmunity | |
choco pack | |
choco push --source https://push.chocolatey.org/ -k $env:CHOCO_KEY | |
env: | |
CHOCO_KEY: ${{ secrets.CHOCO_KEY }} |