Added github workflow for auto-generating
pre-resleases
This commit is contained in:
parent
cf5286d1c2
commit
6fd16b99e9
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