Skip to content

Commit

Permalink
Merge pull request #4 from NonSwag/workflow
Browse files Browse the repository at this point in the history
improve workflows
  • Loading branch information
NonSwag authored Jun 15, 2024
2 parents 362389e + d1fffc2 commit 34824de
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 44 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/build-pr.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle
on: [ pull_request, push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/actions/setup-gradle@v3
with:
arguments: shadowJar
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
path: build/libs/*
if-no-files-found: error
24 changes: 24 additions & 0 deletions .github/workflows/hangar-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Hangar Publish

on:
release:
types:
- prereleased
- released

jobs:
build:
env:
HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Publish with Gradle to Hangar
uses: gradle/actions/setup-gradle@v3
with:
arguments: publishAllPublicationsToHangar
24 changes: 0 additions & 24 deletions .github/workflows/publish.yml

This file was deleted.

0 comments on commit 34824de

Please sign in to comment.