Skip to content

Commit

Permalink
Add Release CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
eolivelli committed Mar 11, 2024
1 parent bfe3812 commit cb65597
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
push:
tags:
- '*'

jobs:
create-release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package -DskipTests
- uses: ncipollo/release-action@v1
with:
artifacts: "blazingcache-services/target/*zip"
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true

0 comments on commit cb65597

Please sign in to comment.