Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsMeRomian committed Feb 25, 2024
1 parent d67e83c commit 343f117
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/create-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: 20
# cache: 'npm'
- name: Setup pnpm
uses: pnpm/action-setup@v3.0.0
with:
version: 8
- name: install & build
run: |
pnpm install
pnpm build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: ./.output
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Minecraft server dashboard for ServerTap

A simple Minecraft server dashboard. Using Nuxt3, ServerTap, NuxtUI.
Made to be running ON the machine that runs the minecraft server, so the ServerTap port does not have to be exposed.
Made to be running ON the machine that runs the minecraft server, so the ServerTap port does not have to be exposed.
Kinda only looks good on mobile.

<img width="318" alt="image" src="https://github.com/ItsMeRomian/mcdash/assets/13468715/cc6fc0d1-fa05-4c04-97eb-57fd5532b934">



## Features

- See if the server is working
Expand Down

0 comments on commit 343f117

Please sign in to comment.