Unverified Commit 9f2a1bbd authored by Nikolay Igotti's avatar Nikolay Igotti Committed by GitHub

Fixes

parent 3bf38b26
...@@ -33,16 +33,18 @@ jobs: ...@@ -33,16 +33,18 @@ jobs:
linux: linux:
# The type of runner that the job will run on # The type of runner that the job will run on
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
# Steps represent a sequence of tasks that will be executed as part of the job # Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
# Runs a set of commands using the runners shell # Runs a set of commands using the runners shell
- name: Run a multi-line script - name: Run a multi-line script
run: | run: |
cd $GITHUB_WORKSPACE/skiko
./gradlew publishToMavenLocal ./gradlew publishToMavenLocal
windows: windows:
runs-on: windows-2019 runs-on: windows-2019
...@@ -52,7 +54,6 @@ jobs: ...@@ -52,7 +54,6 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1 - uses: ilammy/msvc-dev-cmd@v1
- name: Run a multi-line script - name: Run a multi-line script
run: | run: |
cd $GITHUB_WORKSPACE/skiko gradlew publishToMavenLocal
./gradlew publishToMavenLocal
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment