MCProtocolLib/.github/workflows/deploy.yml

37 lines
1.1 KiB
YAML
Raw Normal View History

2023-03-14 08:16:03 -04:00
name: Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
# See https://github.com/actions/checkout/commits
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
2023-12-19 13:01:53 -05:00
- name: Validate Gradle wrapper
# See https://github.com/gradle/wrapper-validation-action/commits
uses: gradle/wrapper-validation-action@342dbebe7272035434f9baccc29a816ec6dd2c7b
2023-12-15 17:34:05 -05:00
- name: Set up JDK 17
# See https://github.com/actions/setup-java/commits
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0
2023-03-14 08:16:03 -04:00
with:
2023-12-15 17:34:05 -05:00
java-version: 17
2023-03-14 08:16:03 -04:00
distribution: temurin
2023-12-19 13:01:53 -05:00
- name: Publish to Maven Repository
if: ${{ success() && github.repository == 'GeyserMC/MCProtocolLib' && github.ref_name == 'master' }}
uses: gradle/gradle-build-action@3bfe3a46584a206fb8361cdedd0647b0c4204232
2023-03-14 08:49:34 -04:00
env:
ORG_GRADLE_PROJECT_geysermcUsername: ${{ vars.DEPLOY_USER }}
ORG_GRADLE_PROJECT_geysermcPassword: ${{ secrets.DEPLOY_PASS }}
2023-12-19 13:01:53 -05:00
with:
arguments: publish