Skip to content

Commit

Permalink
#521 Updated to release version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shynixn committed Aug 11, 2024
1 parent 3a2c21b commit a7308bb
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,26 @@ jobs:
if: "contains(github.ref, 'master')"
steps:
- uses: actions/checkout@v2
- name: Create Wiki
uses: Shynixn/sphinx-rdt-wiki-action@v1.0.0
- uses: actions/setup-java@v1
with:
java-version: '8'
- uses: actions/setup-python@v2
with:
source-dir: "docs/source"
target-dir: "docs/build"
github-secret: ${{ secrets.GITHUB_TOKEN }}
python-version: '3.x'
architecture: 'x64'

- name: Build Documentation
run: |
git pull
git config --global user.email "shynixn@email.com" && git config --global user.name "Shynixn CI Actions"
rm -rf docs/wiki/site
sudo apt-get install -y mkdocs
pip install mkdocs-material
pip install Pygments
cd docs/wiki
mkdocs build
cd ..
cd ..
git add docs
git commit --message "Automatic CI Documentation."
git push --quiet https://Shynixn:${{ secrets.GITHUB_TOKEN }}@github.com/Shynixn/BlockBall.git HEAD:master
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "com.github.shynixn"
version = "2024.1.0"
version = "7.0.0"

repositories {
mavenLocal()
Expand Down
9 changes: 8 additions & 1 deletion docs/wiki/docs/game.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can see that the arena is still disabled and cannot be joined yet.

### Get the selection axe

Get the blockball selection axe for selecting the spawnspoints and other areas.
Get the blockball selection axe for selecting playing areas and goals.

```
/blockball axe
Expand Down Expand Up @@ -127,6 +127,13 @@ to be launched out of the forcefield. To avoid this, you should set a leaveSpawn
### Setting the team-spawnpoints

Currently, players spawn at the location of the ball. You should also set individual team spawnpoints.

Disable the arena to be able to move into it.

```
/blockball toggle game1
```

Move to the first location and execute:

```
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin-legacy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BlockBall
version: 6.46.3
version: 7.0.0
author: Shynixn
website: https://www.spigotmc.org/members/shynixn.63455/
main: com.github.shynixn.blockball.BlockBallPlugin
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: BlockBall
version: 6.46.3
version: 7.0.0
author: Shynixn
website: https://www.spigotmc.org/members/shynixn.63455/
main: com.github.shynixn.blockball.BlockBallPlugin
Expand Down

0 comments on commit a7308bb

Please sign in to comment.