Update JRE artifact names in CI #10
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: JRE CI | |
# This was originally the deprecated JRE release artifact workflow. | |
# We keep this around because it is useful for CI on the runtimer workflow. | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
uses: yetanalytics/workflow-runtimer/.github/workflows/runtimer.yml@af5aff2ec2914a9a708e6875b2be3a6485c68140 | |
with: | |
java-version: '11' | |
java-distribution: 'temurin' | |
java-modules: 'java.base,java.logging,java.naming,java.xml,java.sql,java.transaction.xa,java.security.sasl,java.management' | |
upload_artifacts: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download ubuntu-latest Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ubuntu-22.04-jre | |
- name: Download macOS-latest Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: macos-14-jre | |
- name: Download windows-latest Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: windows-2022-jre |