Skip to content

Commit

Permalink
Merge pull request #30 from dokku/auto-release-tags
Browse files Browse the repository at this point in the history
feat: automatically create releases from tags
  • Loading branch information
josegonzalez committed Feb 9, 2023
2 parents b8c95e6 + c1fc3f9 commit 3fb907d
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 3fb907d

Please sign in to comment.