Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved workflows #147

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ on:
jobs:
add-reviews:

if: github.actor != 'renovate[bot]'
runs-on: ubuntu-24.04

if: github.actor != 'renovate[bot]'

steps:
# https://github.com/kentaro-m/auto-assign-action
- name: Auto Assign
Expand Down
22 changes: 18 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,33 @@ jobs:

runs-on: ubuntu-24.04

permissions:
actions: read

steps:
# https://github.com/actions/checkout
- name: Check out Git repository
uses: actions/[email protected]

# https://github.com/gradle/gradle-build-action
- name: Setup Gradle
uses: gradle/actions/[email protected]
# https://github.com/actions/cache
- name: Cache Gradle
uses: actions/[email protected]
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-

# https://github.com/gradle/wrapper-validation-action
- name: Wrapper validation
uses: gradle/actions/[email protected]

# https://github.com/gradle/gradle-build-action
- name: Setup Gradle
uses: gradle/actions/[email protected]

# https://github.com/actions/setup-java
- name: Set up JDK 17
uses: actions/[email protected]
Expand All @@ -48,5 +62,5 @@ jobs:
- name: Upload build artifact
uses: actions/[email protected]
with:
name: UltraCosmetics-gui-addon-dev
name: UltraCosmetics-GUI-Addon
path: build/libs/UltraCosmetics-gui-addon-*.jar