Updated all the nuspecs to new package source urls and iconurls #2
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
# This file pushes the choco package for Corretto-8 | |
name: Corretto-8 choco push workflow | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'corretto-jre-8/corretto8jre.nuspec' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: corretto-jre-8 | |
shell: powershell | |
run: | | |
cd corretto-jre-8 | |
choco pack | |
choco upgrade corretto8jre --source . | |
choco push --source https://push.chocolatey.org/ -k $env:CHOCO_KEY | |
env: | |
CHOCO_KEY: ${{ secrets.CHOCO_KEY }} |