Skip to content

docs: fix dead MineWave link to public Discord invite #5

docs: fix dead MineWave link to public Discord invite

docs: fix dead MineWave link to public Discord invite #5

Workflow file for this run

# Pack the MCDR plugin on every push/PR, and attach the .mcdr to a Release on tags.
name: package
on: [push, pull_request]
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: setup python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: install mcdreforged
run: python -m pip install --upgrade pip mcdreforged
- name: pack plugin
run: python -m mcdreforged pack -o ./build
- uses: actions/upload-artifact@v7
with:
name: DigAll
path: build/*.mcdr
- name: publish to release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: build/*.mcdr