Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ff2c44ab59
33
.github/workflows/main.yml
vendored
Normal file
33
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Triggers the workflow on push or pull request events but only for the master branch
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: echo VITE_VERSION=git-${GITHUB_SHA::6} > .env
|
||||||
|
- run: cat .env
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '16'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm run build
|
||||||
|
- run: find dist/live-atlas/assets -type f -iname \*.svg -delete
|
||||||
|
- run: cp LICENSE.md dist
|
||||||
|
- name: Upload a Build Artifact
|
||||||
|
uses: actions/upload-artifact@v2.2.4
|
||||||
|
with:
|
||||||
|
name: 'live-atlas'
|
||||||
|
path: 'dist/'
|
||||||
|
if-no-files-found: error
|
@ -38,6 +38,11 @@ You can see it in action [here](https://minecraft.rtgame.co.uk/map/build)
|
|||||||
- Opera 53+
|
- Opera 53+
|
||||||
- Safari 11.1+
|
- Safari 11.1+
|
||||||
|
|
||||||
|
## Download
|
||||||
|
LiveAtlas is available on [SpigotMC](https://www.spigotmc.org/resources/liveatlas-a-dynmap-frontend-for-the-modern-web.86939/)
|
||||||
|
|
||||||
|
Dev builds are available in [Github actions](https://github.com/JLyne/LiveAtlas/actions/workflows/main.yml)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
Using an [external webserver](https://github.com/webbukkit/dynmap/wiki/External-Webserver-Basics) is recommended.
|
Using an [external webserver](https://github.com/webbukkit/dynmap/wiki/External-Webserver-Basics) is recommended.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user