Does this one work?
This commit is contained in:
parent
f803dc7771
commit
485efeebaf
26
.github/workflows/tagged-release.yml
vendored
Normal file
26
.github/workflows/tagged-release.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
name: "tagged-release"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tagged-release:
|
||||||
|
name: "Tagged Release"
|
||||||
|
runs-on: "ubuntu-latest"
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# ...
|
||||||
|
- name: "Build & test"
|
||||||
|
run: |
|
||||||
|
echo "done!"
|
||||||
|
|
||||||
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
with:
|
||||||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
prerelease: false
|
||||||
|
files: |
|
||||||
|
LICENSE.txt
|
||||||
|
*.jar
|
Loading…
Reference in New Issue
Block a user