Skip to content

Commit

Permalink
feat: automatically create releases from tags
Browse files Browse the repository at this point in the history
This will also include release notes, allowing downstream consumers of plugins to better understand what the release includes.
  • Loading branch information
Jose Diaz-Gonzalez committed Feb 9, 2023
1 parent 8facf79 commit 62dc433
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: "tagged-release"

# yamllint disable-line rule:truthy
on:
push:
tags:
- '*'

jobs:
tagged-release:
name: tagged-release
runs-on: ubuntu-20.04

steps:
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
LICENSE.txt
*.jar

0 comments on commit 62dc433

Please sign in to comment.