Skip to content

Commit

Permalink
Corretto 8 JRE choco
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshastri committed Dec 27, 2023
1 parent f2e3289 commit 2117538
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/corretto-jre-8-choco-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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 }}

0 comments on commit 2117538

Please sign in to comment.