tyriis / bedrock-version-fetcher

node script to fetch current minecraft bedrock version page from the official website.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pre-commit taskfile

Minecraft Bedrock Version Fetcher

This action fetches the lates minecraft bedrock version.

Table of Contents

User Story

As a user I want to retrieve the latest bedrock version from the minecraft website to be able to update my server acordingly.

Usage

name: Minecraft version

on:
  workflow_dispatch:

jobs:
  bedrock-version:
    runs-on: ubuntu-latest
    name: prints the minecraft bedrock version
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Fetch Bedrock Version
        uses: tyriis/bedrock-version-fetcher@v3
        id: bedrock
      - name: print the bedrock veesion
        run: echo "Current Minecraft Bedrock version is ${{ steps.bedrock.outputs.version }}"

Outputs

name type description
version string The latest minecraft bedrock version. f.e. 1.20.31.01

License

The scripts and documentation in this project are released under the MIT License

About

node script to fetch current minecraft bedrock version page from the official website.

License:MIT License


Languages

Language:JavaScript 100.0%