Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DanySK/template-for-gradle-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.18
Choose a base ref
...
head repository: DanySK/template-for-gradle-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
19 changes: 6 additions & 13 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -10,25 +10,21 @@ jobs:
matrix:
os: [ windows-2022, macos-14, ubuntu-24.04 ]
runs-on: ${{ matrix.os }}
concurrency:
group: build-${{ github.workflow }}-${{ matrix.os }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: DanySK/action-checkout@0.2.22
- uses: DanySK/build-check-deploy-gradle-action@3.5.22
- uses: DanySK/build-check-deploy-gradle-action@3.7.10
with:
# Dry-deployment
check-command: ./gradlew build --parallel
deploy-command: >-
./gradlew
uploadKotlinOSSRHToMavenCentralNexus
uploadPluginMavenToMavenCentralNexus
uploadPluginMarkerMavenToMavenCentralNexus
uploadAllToMavenCentralNexus
close
drop
dropStagingRepositoryOnMavenCentral
--parallel
should-run-codecov: ${{ runner.os == 'Linux' }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}
should-deploy: >-
${{
runner.os == 'Linux'
@@ -43,9 +39,6 @@ jobs:
permissions:
contents: write
packages: write
concurrency:
# Only one release job at a time. Strictly sequential.
group: release
needs:
- build
runs-on: ubuntu-24.04
@@ -58,10 +51,10 @@ jobs:
with:
token: ${{ secrets.DEPLOYMENT_TOKEN }}
- name: Install Node
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0
with:
node-version-file: package.json
- uses: DanySK/build-check-deploy-gradle-action@3.5.22
- uses: DanySK/build-check-deploy-gradle-action@3.7.10
with:
retries-on-failure: '1'
build-command: true
4 changes: 4 additions & 0 deletions .github/workflows/dispatcher.yml
Original file line number Diff line number Diff line change
@@ -13,6 +13,10 @@ on:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

jobs:
dispatcher:
runs-on: ubuntu-24.04
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.gradle/
build/
.idea/
node_modules/
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading