Skip to content

Commit

Permalink
Merge pull request #8 from futuredapp/housekeep/workflows
Browse files Browse the repository at this point in the history
Rename workflow jobs and add missing gradle setup action in pr-check workflow
  • Loading branch information
matejsemancik authored Nov 22, 2023
2 parents 2cd4032 + 0027316 commit d15eb90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
- '*'

jobs:
validation:
validate-wrapper:
name: Gradle Wrapper Validation
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
- name: Checkout Repo
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
4 changes: 3 additions & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run check
run: ./gradlew --project-dir plugin-build check
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Publish Plugin to Gradle Plugin Portal
name: Publish Plugin

on:
push:
tags:
- '*'

jobs:
gradle:
publish:
runs-on: ubuntu-latest
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
Expand Down

0 comments on commit d15eb90

Please sign in to comment.