Modified all UTF-8 with BOM to UTF-8 #3
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-21 | |
name: Corretto-21 choco push workflow | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'corretto-jdk-21/corretto21jdk.nuspec' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: corretto-jdk-21 | |
shell: powershell | |
run: | | |
cd corretto-jdk-21 | |
choco pack | |
choco upgrade corretto21jdk --source . | |
choco push --source https://push.chocolatey.org/ -k $env:CHOCO_KEY | |
env: | |
CHOCO_KEY: ${{ secrets.CHOCO_KEY }} |