Update maven.yml
This commit is contained in:
parent
dc5f770b14
commit
22fff19c8d
1 changed files with 6 additions and 3 deletions
9
.github/workflows/maven.yml
vendored
9
.github/workflows/maven.yml
vendored
|
@ -25,17 +25,20 @@ jobs:
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build & test
|
- name: Build & test
|
||||||
run: |
|
run: echo "done!"
|
||||||
echo "done!"
|
|
||||||
|
|
||||||
- uses: marvinpinto/action-automatic-releases@latest
|
- name: Create Release
|
||||||
|
uses: marvinpinto/action-automatic-releases@latest
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
prerelease: false
|
prerelease: false
|
||||||
files: |
|
files: |
|
||||||
LICENSE.txt
|
LICENSE.txt
|
||||||
*.jar
|
*.jar
|
||||||
|
# Setzen Sie einen statischen Tag oder generieren Sie einen dynamischen Tag
|
||||||
|
automatic_release_tag: "release-$(date +'%Y%m%d%H%M%S')"
|
||||||
|
|
Loading…
Reference in a new issue