workflow broken af
This commit is contained in:
parent
08feb8ea77
commit
0a5390fd76
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -5,7 +5,6 @@ on: [push, pull_request]
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Java setup
|
||||
|
@ -22,9 +21,10 @@ jobs:
|
|||
restore-keys: |
|
||||
${{ runner.os }}-gradle-
|
||||
- name: Build
|
||||
run: chmod +x gradlew; ./gradlew setupDecompWorkspace && ./gradlew build --stacktrace
|
||||
run: chmod +x gradlew; && ./gradlew build --stacktrace
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: build
|
||||
path: build
|
||||
# ./gradlew setupDecompWorkspace
|
Loading…
Reference in a new issue