Bump actions/setup-java from 4.2.2 to 4.3.0 #11
Workflow file for this run
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: Build | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: 8 | |
distribution: "adopt" | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Compile with Gradle | |
run: gradle kotlinUpgradeYarnLock build | |
- name: Setup Pages | |
uses: actions/[email protected] | |
- name: Build with Jekyll | |
uses: actions/[email protected] | |
with: | |
source: ./build/dist/js/productionExecutable | |
destination: ./_site |