#538 Fixed leave signs did not work correctly. #302
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BlockBall | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master, development ] | |
pull_request: | |
branches: [ master, development ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
Build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8' | |
- name: Build Java Application | |
env: | |
SHYNIXN_MCUTILS_REPOSITORY: ${{ secrets.SHYNIXN_MCUTILS_REPOSITORY }} | |
run: | | |
chmod +x gradlew | |
./gradlew build pluginJars | |
echo "RELEASE_VERSION=$(./gradlew -q printVersion)" >> $GITHUB_ENV | |
- name: Create Github Release | |
if: "contains(github.event.head_commit.message, '--release') && contains(github.ref, 'master')" | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
body: "This release was automatically created by Github Actions. Please wait until the author manually sets the patchnotes for this release." | |
tag_name: ${{ env.RELEASE_VERSION }} | |
release_name: Release ${{ env.RELEASE_VERSION }} | |
draft: true | |
prerelease: false | |
- name: Upload Latest Bukkit Release to Github | |
if: "contains(github.event.head_commit.message, '--release') && contains(github.ref, 'master')" | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: /home/runner/work/BlockBall/BlockBall/build/libs/blockball-root-${{ env.RELEASE_VERSION }}-latest.jar | |
asset_name: BlockBall.jar | |
asset_content_type: application/jar | |
- name: Upload Premium Bukkit Release to Github | |
if: "contains(github.event.head_commit.message, '--release') && contains(github.ref, 'master')" | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: /home/runner/work/BlockBall/BlockBall/build/libs/blockball-root-${{ env.RELEASE_VERSION }}-premium.jar | |
asset_name: BlockBall-Premium.jar | |
asset_content_type: application/jar | |
- name: Upload Legacy Bukkit Release to Github | |
if: "contains(github.event.head_commit.message, '--release') && contains(github.ref, 'master')" | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: /home/runner/work/BlockBall/BlockBall/build/libs/blockball-root-${{ env.RELEASE_VERSION }}-legacy.jar | |
asset_name: BlockBall-Legacy.jar | |
asset_content_type: application/jar | |
Wiki: | |
runs-on: ubuntu-latest | |
if: "contains(github.ref, 'master')" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create Wiki | |
uses: Shynixn/[email protected] | |
with: | |
source-dir: "docs/source" | |
target-dir: "docs/build" | |
github-secret: ${{ secrets.GITHUB_TOKEN }} |