PlotSquared/.github/workflows/build.yml

68 lines
2.9 KiB
YAML
Raw Normal View History

2021-12-17 21:36:56 +01:00
name: build
on:
push:
branches:
2023-03-15 10:30:38 +01:00
- main
2020-11-23 18:32:28 +01:00
jobs:
build:
if: github.repository_owner == 'IntellectualSites'
2021-12-17 21:36:56 +01:00
runs-on: ubuntu-latest
2020-11-23 18:32:28 +01:00
steps:
2021-12-17 21:36:56 +01:00
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
2023-05-01 10:15:50 +02:00
uses: gradle/wrapper-validation-action@v1
2021-12-17 21:36:56 +01:00
- name: Setup Java
uses: actions/setup-java@v4
with:
2021-12-17 21:36:56 +01:00
distribution: temurin
java-version: 17
- name: Clean Build
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
2023-01-09 10:42:08 +01:00
- name: Publish Release
2023-03-15 10:30:38 +01:00
if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}}
2023-01-09 10:42:08 +01:00
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
2023-03-15 10:30:38 +01:00
if: ${{ runner.os == 'Linux' && env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
2023-01-09 10:42:08 +01:00
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/main'}}
2023-05-01 10:15:50 +02:00
uses: cpina/github-action-push-to-another-repository@main
2023-01-09 10:42:08 +01:00
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: v7/core
- name: Publish bukkit javadoc
if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}}
2023-05-01 10:15:50 +02:00
uses: cpina/github-action-push-to-another-repository@main
2023-01-09 10:42:08 +01:00
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: v7/bukkit