Fix deploy #17

Merged
quentinlegot merged 1 commits from dev into master 2023-06-13 22:38:36 +02:00

View File

@ -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