Skip to content

Commit

Permalink
Merge pull request #208 from rahulsom/switch-to-reuseable-workflow
Browse files Browse the repository at this point in the history
chore: Use reusable workflow
  • Loading branch information
rahulsom authored Jan 8, 2023
2 parents 9729803 + 820eecf commit 77e3068
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 204 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/build-master.yml

This file was deleted.

71 changes: 0 additions & 71 deletions .github/workflows/build-pr.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/build-tag-final.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/build-tag-rc.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Gradle Build

on:
pull_request:
branches: ['*']
push:
branches: ['*']
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
uses: rahulsom/_/.github/workflows/gradle.yml@main
secrets:
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.ORG_GRADLE_PROJECT_sonatypePassword }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ORG_GRADLE_PROJECT_signingKey }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.ORG_GRADLE_PROJECT_signingPassword }}

0 comments on commit 77e3068

Please sign in to comment.