Skip to content

Commit

Permalink
Turn the deprecated release workflow into a ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinqian00 committed Sep 24, 2024
1 parent 98a1aaf commit fe32b83
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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/runtimer/.github/workflows/[email protected]
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'

draft_release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download ubuntu-latest Artifact
uses: actions/download-artifact@v4
with:
name: ubuntu-20.04-jre

- name: Download macOS-latest Artifact
uses: actions/download-artifact@v4
with:
name: macos-12-jre

- name: Download windows-latest Artifact
uses: actions/download-artifact@v4
with:
name: windows-2022-jre

0 comments on commit fe32b83

Please sign in to comment.