Skip to content

Commit

Permalink
chore: Use reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulsom committed Jan 8, 2023
1 parent f574c2b commit 820eecf
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 820eecf

Please sign in to comment.