FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-dataloader/.github/workflows/release.yml at master · graphql-java/java-dataloader · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
graphql-java
/
java-dataloader
Public
Notifications
You must be signed in to change notification settings
Fork
101
Star
524
Code
Issues
2
Pull requests
22
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java-dataloader
/
.github
/
workflows
/
release.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
37 lines (35 loc) · 1.35 KB
Breadcrumbs
java-dataloader
/
.github
/
workflows
/
release.yml
Copy path
File metadata and controls
37 lines (35 loc) · 1.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name
:
Manual Release Build
#
Release builds
on
:
workflow_dispatch
:
inputs
:
version
:
description
:
'
the version to be released
'
required
:
true
jobs
:
buildAndPublish
:
runs-on
:
ubuntu-latest
env
:
MAVEN_CENTRAL_PGP_KEY
:
${{ secrets.MAVEN_CENTRAL_PGP_KEY }}
MAVEN_CENTRAL_USER
:
${{ secrets.MAVEN_CENTRAL_USER }}
MAVEN_CENTRAL_PASSWORD
:
${{ secrets.MAVEN_CENTRAL_PASSWORD }}
MAVEN_CENTRAL_USER_NEW
:
${{ secrets.MAVEN_CENTRAL_USER_NEW }}
MAVEN_CENTRAL_PASSWORD_NEW
:
${{ secrets.MAVEN_CENTRAL_PASSWORD_NEW }}
RELEASE_VERSION
:
${{ github.event.inputs.version }}
steps
:
-
uses
:
actions/checkout@v5
-
uses
:
gradle/actions/wrapper-validation@v5
-
name
:
Set up JDK 21
uses
:
actions/setup-java@v5
with
:
java-version
:
'
21
'
distribution
:
'
corretto
'
check-latest
:
true
#
Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
#
See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
-
name
:
Setup Gradle
uses
:
gradle/actions/setup-gradle@v5
-
name
:
build test and publish
run
:
./gradlew assemble && ./gradlew check --info && ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository -x check --info --stacktrace
env
:
CI
:
true
Back
|
FazBrowse Home
|
New Git URL