Added github workflow for auto-generating
pre-resleases
This commit is contained in:
parent
3c7c181911
commit
32f7720069
28
.github/workflows/automatic-prerelease.yml
vendored
Normal file
28
.github/workflows/automatic-prerelease.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
name: "pre-release"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pre-release:
|
||||||
|
name: "Pre Release"
|
||||||
|
runs-on: "ubuntu-latest"
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# ...
|
||||||
|
- name: "Build & test"
|
||||||
|
run: |
|
||||||
|
echo "done!"
|
||||||
|
|
||||||
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
with:
|
||||||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
automatic_release_tag: "latest"
|
||||||
|
prerelease: true
|
||||||
|
title: "Development Build"
|
||||||
|
files: |
|
||||||
|
LICENSE.txt
|
||||||
|
*.jar
|
Loading…
Reference in New Issue
Block a user