Skip to content

Commit

Permalink
hopefully make gh actions publish to maven on release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuclearfarts authored and Nuclearfarts committed Nov 5, 2020
1 parent 37ca98e commit 984a36d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish
on:
release:
types: [published]
env:
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: eskatos/[email protected]
with:
gradle-version: wrapper
arguments: build publish
dependencies-cache-enabled: false
configuration-cache-enabled: false

0 comments on commit 984a36d

Please sign in to comment.