Skip to content

Commit

Permalink
adding github release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaitor committed Feb 15, 2020
1 parent b312786 commit fbae4ff
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Github Release

on:
push:
tags:
- 'v*.*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/*.jar
target/*-schemas.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Maven Release

on:
push:
Expand Down

0 comments on commit fbae4ff

Please sign in to comment.