-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (31 loc) · 1.08 KB
/
gradle.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
name: Run Gradle on PRs
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
# Populates ARTIFACTORY_USERNAME and ARTIFACTORY_API_KEY with
# temporary username/password for publishing to packages.atlassian.com
- name: Get publish token
id: publish-token
if: github.ref == 'refs/heads/release'
uses: atlassian-labs/artifact-publish-token@v1.0.1
with:
output-modes: environment
# Publishes to Artifactory only on push to the "release" branch.
- name: "Publish"
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
if: github.ref == 'refs/heads/release'
run: chmod 755 gradlew && ./gradlew artifactoryPublish