Skip to content

Commit 199764f

Browse files
author
erict875
committed
chore(version): bump to 1.0.1-SNAPSHOT across all modules
1 parent de0f48a commit 199764f

362 files changed

Lines changed: 2796 additions & 1628 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,19 @@ jobs:
1414
build-and-publish:
1515
runs-on: ubuntu-latest
1616
timeout-minutes: 45
17+
env:
18+
CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
19+
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }}
1720
steps:
1821
- name: Checkout
1922
uses: actions/checkout@v4
2023

24+
- name: Check required secrets are present
25+
if: ${{ !secrets.CENTRAL_USERNAME || !secrets.CENTRAL_PASSWORD || !secrets.GPG_PRIVATE_KEY || !secrets.GPG_PASSPHRASE }}
26+
run: |
27+
echo "One or more required secrets are missing: CENTRAL_USERNAME, CENTRAL_PASSWORD, GPG_PRIVATE_KEY, GPG_PASSPHRASE" >&2
28+
exit 1
29+
2130
- name: Setup Java 21 with Maven Central credentials and GPG
2231
uses: actions/setup-java@v4
2332
with:

0 commit comments

Comments
 (0)