-
-
Notifications
You must be signed in to change notification settings - Fork 9
38 lines (30 loc) · 1.03 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
name: Publish Snapshot
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
if: github.repository == 'MayakaApps/ComposeWindowStyler'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: Retrieve version
run: |
echo "VERSION_NAME=$(cat window-styler/gradle.properties | grep -w "VERSION_NAME" | cut -d'=' -f2)" >> $GITHUB_ENV
- name: Publish snapshot
if: endsWith(env.VERSION_NAME, '-SNAPSHOT')
uses: gradle/gradle-build-action@v2
with:
arguments: publishAllPublicationsToMavenCentralRepository --no-daemon --no-parallel
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}