-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (36 loc) · 1.25 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
37
38
39
40
41
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Make directory for secrets
run: |
sudo mkdir -p /etc/pki/vizzyy; sudo chmod -R 777 /etc/pki/vizzyy
- name: Populate Keystore
run: |
echo "${{ secrets.HOME_KEYSTORE_BASE64 }}" | base64 -d > /etc/pki/vizzyy/keystore.jks
- name: Populate Truststore
run: |
echo "${{ secrets.HOME_TRUSTSTORE_BASE64 }}" | base64 -d > /etc/pki/vizzyy/truststore.jks
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build