-
Notifications
You must be signed in to change notification settings - Fork 101
45 lines (37 loc) · 1.14 KB
/
publish-snapshot.yml
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
38
39
40
41
42
43
44
45
name: Publish snapshot
on:
workflow_dispatch:
push:
branches:
- main
- ray/ui-update
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx5g -Dorg.gradle.daemon=false -Dorg.gradle.logging.stacktrace=all"
jobs:
publish-snapshot :
runs-on : macos-latest
if : github.repository == 'square/workflow-kotlin'
timeout-minutes : 35
steps :
- uses: actions/checkout@v3
- name : Check for -SNAPSHOT version
uses : ./.github/actions/gradle-task
with :
task : checkVersionIsSnapshot
write-cache-key : build-logic
- name : Assemble
uses : ./.github/actions/gradle-task
with :
task : assemble
write-cache-key : main-build-artifacts
- name : Check
uses : ./.github/actions/gradle-task
with :
task : check
- name : Publish Snapshots
uses : ./.github/actions/gradle-task
with :
task : publish
env :
ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.SONATYPE_NEXUS_PASSWORD }}