mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:25:49 +00:00
create an automatic versioning release
This commit is contained in:
parent
8992ebb642
commit
0e9b187543
1 changed files with 6 additions and 8 deletions
14
.github/workflows/github-actions.yml
vendored
14
.github/workflows/github-actions.yml
vendored
|
@ -1,14 +1,14 @@
|
||||||
---
|
---
|
||||||
name: "pre-release"
|
name: "tagged-release"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
tags:
|
||||||
- "main"
|
- "v*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pre-release:
|
tagged-release:
|
||||||
name: "Pre Release"
|
name: "Tagged Release"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -20,9 +20,7 @@ jobs:
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
with:
|
with:
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
automatic_release_tag: "latest"
|
prerelease: false
|
||||||
prerelease: true
|
|
||||||
title: "Development Build"
|
|
||||||
files: |
|
files: |
|
||||||
LICENSE.txt
|
LICENSE.txt
|
||||||
*.jar
|
*.jar
|
||||||
|
|
Loading…
Reference in a new issue