Skip to content

Commit

Permalink
WIP workflow for Github releases
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Oct 11, 2024
1 parent 6d198ae commit d82c72c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.unused
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: release

on:
push:
tags: [ '*.*.*' ]

###

jobs:

release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Prepare Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- name: Maven dependencies cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
path: ~/.m2
restore-keys: ${{ runner.os }}-m2
- name: Run release
run: mvn clean install

# How to actually make the release??

0 comments on commit d82c72c

Please sign in to comment.