Merge branch 'main' of https://github.com/potzplitz/ExtremeDemonList
This commit is contained in:
commit
8971988160
1 changed files with 31 additions and 0 deletions
31
.github/workflows/maven.yml
vendored
Normal file
31
.github/workflows/maven.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: Automatisches Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Weitere Build-Schritte hier...
|
||||||
|
|
||||||
|
release:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Erstellen eines Releases
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{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}}
|
||||||
|
with:
|
||||||
|
# Verwendet den Tag-Namen, der den Trigger ausgelöst hat, als Tag-Name für das Release
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
# Erstellt einen Release-Namen, der dem Tag-Namen entspricht
|
||||||
|
release_name: Release ${{ github.ref }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
Loading…
Reference in a new issue