Update README to new repo and remove reference to deprecated workflow #7
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: (DEPRECATED) Release JRE Version | |
# Release on tagged versions | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
build: | |
uses: yetanalytics/runtimer/.github/workflows/runtimer.yml@7ed0b71225e1000a7e8428422555676fb4296752 | |
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@v2 | |
with: | |
name: ubuntu-20.04-jre | |
- name: Download macOS-latest Artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: macos-12-jre | |
- name: Download windows-latest Artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: windows-2022-jre | |
- name: Craft Draft Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
# Defaults: | |
# name: [tag name] | |
# tag_name: github.ref | |
body: "## Release Notes\nTODO: Create great release notes!" | |
draft: true | |
files: '*-jre.zip' |