14 lines
521 B
YAML
14 lines
521 B
YAML
name: "Clone OTP"
|
|
description: "Build docker image with docker"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: "Setup gradle project"
|
|
shell: bash
|
|
run: |
|
|
echo "Updating gradle wrapper properties"
|
|
sed -i 's|distributionUrl=https\\://nexus.isb/repository/gradleorg-raw-proxy|distributionUrl=https://services.gradle.org/distributions|g' ./gradle/wrapper/gradle-wrapper.properties
|
|
chmod +x ./gradlew
|
|
echo 'Result properties:'
|
|
cat ./gradle/wrapper/gradle-wrapper.properties |