From 2c8331e82edc0fc241839593988badc9d18ef343 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Sun, 15 Jan 2023 18:40:05 +0100 Subject: [PATCH] Debug shadowJar --- .github/workflows/build.yml | 55 ++++--------------------------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7d6fa81c..0074905b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,12 +3,15 @@ name: build on: push: branches: - - v6 + - shadow-debug jobs: build: if: github.repository_owner == 'IntellectualSites' - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - name: Checkout Repository uses: actions/checkout@v3 @@ -19,51 +22,5 @@ jobs: with: distribution: temurin java-version: 17 - - name: Clean Build + - name: Build on ${{ matrix.os }} run: ./gradlew clean build - - name: Determine release status - if: ${{ runner.os == 'Linux' }} - run: | - if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then - echo "STATUS=snapshot" >> $GITHUB_ENV - else - echo "STATUS=release" >> $GITHUB_ENV - fi - - name: Publish Release - if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/v6'}} - run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository - env: - ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} - ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} - ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }} - ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }} - - name: Publish Snapshot - if: ${{ runner.os == 'Linux' && env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/v6' }} - run: ./gradlew publishToSonatype - env: - ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} - ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} - - name: Publish core javadoc - if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/v6'}} - uses: cpina/github-action-push-to-another-repository@main - env: - SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} - with: - source-directory: 'Core/build/docs/javadoc' - destination-github-username: 'IntellectualSites' - destination-repository-name: 'plotsquared-javadocs' - user-email: ${{ secrets.USER_EMAIL }} - target-branch: main - target-directory: core - - name: Publish bukkit javadoc - if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/v6'}} - uses: cpina/github-action-push-to-another-repository@main - env: - SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} - with: - source-directory: 'Bukkit/build/docs/javadoc' - destination-github-username: 'IntellectualSites' - destination-repository-name: 'plotsquared-javadocs' - user-email: ${{ secrets.USER_EMAIL }} - target-branch: main - target-directory: bukkit