Fix deploy
This commit is contained in:
parent
193236f186
commit
9ee131a1f6
@ -36,7 +36,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
chmod +x ./gradlew
|
chmod +x ./gradlew
|
||||||
touch local.properties
|
touch local.properties
|
||||||
echo $REPO_USERNAME
|
|
||||||
- name: build
|
- name: build
|
||||||
run: ./gradlew build --no-daemon --max-workers 1
|
run: ./gradlew build --no-daemon --max-workers 1
|
||||||
#- name: test
|
#- name: test
|
||||||
@ -46,6 +45,20 @@ jobs:
|
|||||||
if: gitea.ref == 'refs/heads/master'
|
if: gitea.ref == 'refs/heads/master'
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: validate gradle wrapper
|
||||||
|
uses: https://github.com/gradle/wrapper-validation-action@v1
|
||||||
|
- name: setup jdk ${{ matrix.Java }}
|
||||||
|
uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
java-version: ${{ matrix.java }}
|
||||||
|
distribution: 'oracle'
|
||||||
|
- name: make gradle wrapper executable
|
||||||
|
if: ${{ runner.os != 'Windows' }}
|
||||||
|
run: |
|
||||||
|
chmod +x ./gradlew
|
||||||
|
touch local.properties
|
||||||
- name: deploy
|
- name: deploy
|
||||||
run: ./gradlew publish
|
run: ./gradlew publish
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user