Fix permission
This commit is contained in:
parent
898bf7d536
commit
bc7ee6681d
|
|
@ -13,22 +13,19 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest ]
|
os: [ ubuntu-latest ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
|
|
||||||
- name: Set up JDK 11
|
- name: Set up JDK 11
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
|
||||||
run: chmod +x gradlew
|
|
||||||
|
|
||||||
- name: Build Debug
|
- name: Build Debug
|
||||||
run: ./gradlew buildDebug
|
run: ./gradlew buildDebug
|
||||||
- name: Upload Debug artifact
|
- name: Upload Debug artifact
|
||||||
|
|
@ -36,7 +33,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: lspatch-debug
|
name: lspatch-debug
|
||||||
path: out/lspatch.jar
|
path: out/lspatch.jar
|
||||||
|
|
||||||
- name: Build Release
|
- name: Build Release
|
||||||
run: ./gradlew buildRelease
|
run: ./gradlew buildRelease
|
||||||
- name: Upload Release artifact
|
- name: Upload Release artifact
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue