Skip to content

Upgrade JDK Casks to the latest versions #38

Upgrade JDK Casks to the latest versions

Upgrade JDK Casks to the latest versions #38

Workflow file for this run

name: JDK11
on:
push:
branches:
- '**'
paths:
- 'Casks/zulu-jdk11.rb'
pull_request:
branches:
- master
paths:
- 'Casks/zulu-jdk11.rb'
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: brew pull & reset & tap
run: |
brew update-reset "$(brew --repository)"
brew update-reset "$(brew --repository homebrew/cask)"
mkdir -p $(brew --repo)/Library/Taps/mdogan
ln -s $GITHUB_WORKSPACE $(brew --repo)/Library/Taps/mdogan/homebrew-zulu
env:
HOMEBREW_COLOR: 1
HOMEBREW_DEVELOPER: 1
- name: install jdk11
run: brew install zulu-jdk11
env:
HOMEBREW_COLOR: 1
HOMEBREW_DEVELOPER: 1
- name: uninstall jdk11
run: brew uninstall zulu-jdk11
env:
HOMEBREW_COLOR: 1
HOMEBREW_DEVELOPER: 1